From 2d1bbf299c30de61d0725e26d408e5263d32fb98 Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Thu, 6 Jan 2022 11:53:30 +0300 Subject: [PATCH] Update NpmPackagesUpdater.cs --- .../Volo/Abp/Cli/ProjectModification/NpmPackagesUpdater.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectModification/NpmPackagesUpdater.cs b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectModification/NpmPackagesUpdater.cs index 094fe6dc96..453e7a54b3 100644 --- a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectModification/NpmPackagesUpdater.cs +++ b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectModification/NpmPackagesUpdater.cs @@ -11,6 +11,8 @@ using Microsoft.Extensions.Logging.Abstractions; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using NuGet.Versioning; +using Volo.Abp.Cli.Args; +using Volo.Abp.Cli.Commands; using Volo.Abp.Cli.Http; using Volo.Abp.Cli.Utils; using Volo.Abp.DependencyInjection; @@ -343,7 +345,7 @@ namespace Volo.Abp.Cli.ProjectModification protected virtual async Task RunInstallLibsAsync(string fileDirectory) { var args = new CommandLineArgs("install-libs"); - args.Options.Add(BundleCommand.Options.WorkingDirectory.Short, fileDirectory); + args.Options.Add(InstallLibsCommand.Options.WorkingDirectory.Short, fileDirectory); await InstallLibsCommand.ExecuteAsync(args); }