Skip to content

Commit

Permalink
fix: fix running subcommands other than init, dev, build
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir committed Feb 28, 2022
1 parent 02ab00b commit 0094010
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vite-tauri.ts
Expand Up @@ -20,7 +20,7 @@ async function run() {
await build(args);
break;
default:
await TauriCli.run([cmd ?? "help", ...args, "vite-tauri"], "vite-tauri");
await TauriCli.run([cmd ?? "help", ...args], "vite-tauri");
}
}

Expand Down

0 comments on commit 0094010

Please sign in to comment.