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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
1 deletions
-
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 |
|
|
|
{ |
|
|
|
|