Skip to content
This repository was archived by the owner on Nov 8, 2019. It is now read-only.

Commit bf7fe6e

Browse files
committed
Fix rustup verbose mode
1 parent bf85764 commit bf7fe6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rustup.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import { getVerboseOption } from "./common/options";
55

66
const command = createCommand(
77
"rustup",
8-
getInput("rustupCommand"),
9-
`${getInput("rustupCommandArguments")} ${getVerboseOption()}`
8+
`${getVerboseOption()} ${getInput("rustupCommand")}`,
9+
getInput("rustupCommandArguments")
1010
);
1111

1212
launch(async () => await executeCommand(command));

0 commit comments

Comments
 (0)