Skip to content

Commit eda2c2c

Browse files
feat: improve deploy help message to include config file name and default chain
1 parent b8e663c commit eda2c2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ yargsInstance
4949
.usage('$0 <cmd> [args]')
5050

5151
// Initialize command
52-
.command('init', 'Initialize your app structure', () => {}, init)
52+
.command('init', 'Initialize your app structure', () => { }, init)
5353

5454
// Test command
5555
.command({
@@ -92,7 +92,7 @@ yargsInstance
9292
builder: (y) => {
9393
return y.option('chain', {
9494
describe:
95-
'Specify the blockchain on which the iApp will be deployed (overrides defaultChain configuration)',
95+
`Specify the blockchain on which the iApp will be deployed (overrides defaultChain configuration in iapp.config.json)`,
9696
type: 'string',
9797
choices: SUPPORTED_CHAINS,
9898
});

0 commit comments

Comments
 (0)