Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dev-cli/src/commands/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ export async function init ({ lang = 'lua' }, name) {

export const command = new Command()
.description('Create an ao Process Source Project')
.usage('-l cpp <my-project-name>')
.usage('-l c <my-project-name>')
.option(
'-l, --lang <language:string>',
'The starter to use. Defaults to Lua. Options are "lua" and "cpp"'
'The starter to use. Defaults to Lua. Options are "lua" and "c"'
)
.arguments('<name:string>')
.action(init)