Skip to content

Commit f1c8117

Browse files
committed
fix incorrect arguments
1 parent e01c26b commit f1c8117

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

toolkit-app/src/main/java/iot/technology/client/toolkit/app/ToolKitCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public static void main(String[] args) {
8585
boolean isChinese = bundle.getLocale().equals(Locale.CHINESE);
8686
nbCmd.getCommandSpec().usageMessage().hidden(!isChinese);
8787

88-
int exitStatus = commandLine.execute("nb", "call");
88+
int exitStatus = commandLine.execute(args);
8989
if (exitStatus == ExitCodeEnum.NOTEND.getValue()) {
9090
return;
9191
}

0 commit comments

Comments
 (0)