diff --git a/build/actions/config.js b/build/actions/config.js index c1523f2e..e09205f9 100644 --- a/build/actions/config.js +++ b/build/actions/config.js @@ -23,7 +23,7 @@ limitations under the License. exports.read = { signature: 'config read', description: 'read a device configuration', - help: 'Use this command to read the config.json file from a provisioned device\n\nExamples:\n\n $ resin config read --type raspberry-pi\n $ resin config read --type raspberry-pi --drive /dev/disk2', + help: 'Use this command to read the config.json file from the mounted filesystem (e.g. SD card) of a provisioned device"\n\nExamples:\n\n $ resin config read --type raspberry-pi\n $ resin config read --type raspberry-pi --drive /dev/disk2', options: [ { signature: 'type', @@ -60,7 +60,7 @@ limitations under the License. exports.write = { signature: 'config write ', description: 'write a device configuration', - help: 'Use this command to write the config.json file of a provisioned device\n\nExamples:\n\n $ resin config write --type raspberry-pi username johndoe\n $ resin config write --type raspberry-pi --drive /dev/disk2 username johndoe\n $ resin config write --type raspberry-pi files.network/settings "..."', + help: 'Use this command to write the config.json file to the mounted filesystem (e.g. SD card) of a provisioned device\n\nExamples:\n\n $ resin config write --type raspberry-pi username johndoe\n $ resin config write --type raspberry-pi --drive /dev/disk2 username johndoe\n $ resin config write --type raspberry-pi files.network/settings "..."', options: [ { signature: 'type', @@ -105,7 +105,7 @@ limitations under the License. exports.inject = { signature: 'config inject ', description: 'inject a device configuration file', - help: 'Use this command to inject a config.json file to a provisioned device\n\nExamples:\n\n $ resin config inject my/config.json --type raspberry-pi\n $ resin config inject my/config.json --type raspberry-pi --drive /dev/disk2', + help: 'Use this command to inject a config.json file to the mounted filesystem (e.g. SD card) of a provisioned device"\n\nExamples:\n\n $ resin config inject my/config.json --type raspberry-pi\n $ resin config inject my/config.json --type raspberry-pi --drive /dev/disk2', options: [ { signature: 'type', diff --git a/lib/actions/config.coffee b/lib/actions/config.coffee index 4070c772..801a43d6 100644 --- a/lib/actions/config.coffee +++ b/lib/actions/config.coffee @@ -20,7 +20,7 @@ exports.read = signature: 'config read' description: 'read a device configuration' help: ''' - Use this command to read the config.json file from a provisioned device + Use this command to read the config.json file from the mounted filesystem (e.g. SD card) of a provisioned device" Examples: @@ -64,7 +64,7 @@ exports.write = signature: 'config write ' description: 'write a device configuration' help: ''' - Use this command to write the config.json file of a provisioned device + Use this command to write the config.json file to the mounted filesystem (e.g. SD card) of a provisioned device Examples: @@ -116,7 +116,7 @@ exports.inject = signature: 'config inject ' description: 'inject a device configuration file' help: ''' - Use this command to inject a config.json file to a provisioned device + Use this command to inject a config.json file to the mounted filesystem (e.g. SD card) of a provisioned device" Examples: