Skip to content

Commit 3f8f459

Browse files
Fix caa tests on CI (#13814)
1 parent 7f0738a commit 3f8f459

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/create-audius-app/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ process.on('SIGTERM', handleSigTerm)
1818

1919
const program = new Command(packageJson.name)
2020
.version(packageJson.version)
21-
.arguments('<project-directory>')
21+
.arguments('[project-directory]')
2222
.usage(`${green('<project-directory>')} [options]`)
2323
.action((name) => {
24-
projectPath = name
24+
projectPath = name ?? ''
2525
})
2626
.option(
2727
'-e, --example [name]',

0 commit comments

Comments
 (0)