Skip to content

Commit d671467

Browse files
feat: improve --chain option help message to include config file name and default chain (#231)
* feat: improve deploy help message to include config file name and default chain * fix: add chain option helper to other commands --------- Co-authored-by: Pierre Jeanjacquot <[email protected]>
1 parent 753e2f4 commit d671467

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cli/src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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 from iapp.config.json)',
9696
type: 'string',
9797
choices: SUPPORTED_CHAINS,
9898
});
@@ -136,7 +136,7 @@ yargsInstance
136136
})
137137
.option('chain', {
138138
describe:
139-
'Specify the blockchain on which the iApp is deployed (overrides defaultChain configuration)',
139+
'Specify the blockchain on which the iApp is deployed (overrides defaultChain configuration from iapp.config.json)',
140140
type: 'string',
141141
choices: SUPPORTED_CHAINS,
142142
});
@@ -157,7 +157,7 @@ yargsInstance
157157
})
158158
.option('chain', {
159159
describe:
160-
'Specify the blockchain on which the task is registered (overrides defaultChain configuration)',
160+
'Specify the blockchain on which the task is registered (overrides defaultChain configuration from iapp.config.json)',
161161
type: 'string',
162162
choices: SUPPORTED_CHAINS,
163163
});

0 commit comments

Comments
 (0)