Skip to content

Commit e11734b

Browse files
committed
Implement bundle's new constructor in cli
1 parent 3af47e3 commit e11734b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/EasySign.Cli/BundleCommandProvider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ namespace SAPTeam.EasySign.Cli
1111
{
1212
internal class BundleCommandProvider : CommandProvider<Bundle>
1313
{
14-
public override void InitializeBundle(string workingDirectory, string bundleName)
14+
public override void InitializeBundle(string bundlePath)
1515
{
16-
Bundle = new Bundle(workingDirectory, bundleName);
16+
Bundle = new Bundle(bundlePath);
1717
}
1818

1919
public override RootCommand GetRootCommand()

0 commit comments

Comments
 (0)