Skip to content

Commit

Permalink
Merge pull request #17158 from abpframework/issue-17152
Browse files Browse the repository at this point in the history
CLI: Pass command arguments to ABP Suite
  • Loading branch information
yekalkan authored Jul 21, 2023
2 parents 27f276f + 867c9c0 commit 037f1f5
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,11 @@ private void RunSuite(CommandLineArgs commandLineArgs)

if (targetSolution == null)
{
CmdHelper.RunCmd("abp-suite");
var args = Environment.GetCommandLineArgs();
var suiteArgs = args.Skip(2).JoinAsString(" ");
var command = string.Concat("abp-suite ", suiteArgs);

CmdHelper.RunCmd(command);
}
else
{
Expand Down

0 comments on commit 037f1f5

Please sign in to comment.