Skip to content

Commit 616cab1

Browse files
committed
Fixed typo in cmd (#37)
1 parent 1fffa37 commit 616cab1

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/WGet.NET/Components/WinGetPackageManager.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
// https://github.com/basicx-StrgV/ //
44
//--------------------------------------------------//
55
using System;
6+
using System.Collections.Generic;
67
using System.IO;
78
using System.Threading;
89
using System.Threading.Tasks;
9-
using System.Collections.Generic;
10-
using WGetNET.Models;
11-
using WGetNET.Helper;
12-
using WGetNET.Exceptions;
1310
using WGetNET.Components.Internal;
11+
using WGetNET.Exceptions;
12+
using WGetNET.Helper;
13+
using WGetNET.Models;
1414

1515
namespace WGetNET
1616
{
@@ -26,7 +26,7 @@ public class WinGetPackageManager : WinGet
2626
private const string _searchBySourceCmd = "search \"{0}\" --source {1} --accept-source-agreements";
2727
private const string _installCmd = "install \"{0}\"";
2828
private const string _upgradeCmd = "upgrade \"{0}\" --accept-source-agreements";
29-
private const string _upgradeAllCmd = "upgrade --al --accept-source-agreementsl";
29+
private const string _upgradeAllCmd = "upgrade --al --accept-source-agreements";
3030
private const string _getUpgradeableCmd = "upgrade";
3131
private const string _includeUnknown = "--include-unknown";
3232
private const string _uninstallCmd = "uninstall \"{0}\"";

0 commit comments

Comments
 (0)