Skip to content

Commit

Permalink
fix(cli): scriptName
Browse files Browse the repository at this point in the history
  • Loading branch information
dockfries committed May 25, 2024
1 parent 53fc2c1 commit 3cef7fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/create-app/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,8 @@ function addUpdateBuilder(y: Argv) {

function init() {
cli
.usage("Usage: infernus [command] <options>")
.usage("Usage: $0 [command] <options>")
.scriptName("infernus")
.command("create [app-name]", "create a new project", () => {}, createApp)
.command({
command: "add [dependencies..]",
Expand Down

0 comments on commit 3cef7fd

Please sign in to comment.