Browse Source

Merge pull request #17162 from abpframework/auto-merge/rel-7-3/2080

Merge branch dev with rel-7.3
pull/17163/head
Yunus Emre Kalkan 3 years ago
committed by GitHub
parent
commit
6039c28330
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/SuiteCommand.cs

6
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/SuiteCommand.cs

@ -454,7 +454,11 @@ public class SuiteCommand : IConsoleCommand, ITransientDependency
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
{

Loading…
Cancel
Save