Skip to content

Commit

Permalink
Update SuiteCommand.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
EngincanV committed Jul 20, 2023
1 parent 27f276f commit 867c9c0
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);

Check warning on line 459 in framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/SuiteCommand.cs

View check run for this annotation

Codecov / codecov/patch

framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/SuiteCommand.cs#L457-L459

Added lines #L457 - L459 were not covered by tests

CmdHelper.RunCmd(command);

Check warning on line 461 in framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/SuiteCommand.cs

View check run for this annotation

Codecov / codecov/patch

framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/SuiteCommand.cs#L461

Added line #L461 was not covered by tests
}
else
{
Expand Down

0 comments on commit 867c9c0

Please sign in to comment.