Small improvement to resin deploy docs

Change-Type: patch
This commit is contained in:
Tim Perry 2017-06-13 19:45:48 +02:00
parent 2fce0e964b
commit 66a4faeea5
3 changed files with 5 additions and 5 deletions

View File

@ -171,8 +171,8 @@ uploadToPromise = function(uploadRequest, logStreams) {
module.exports = {
signature: 'deploy <appName> [image]',
description: 'Deploy a container to a resin.io application',
help: 'Use this command to deploy and optionally build an image to an application.\n\nUsage: deploy <appName> ([image] | --build [--source build-dir])\n\nNote: If building with this command, all options supported by `resin build`\nare also supported with this command.\n\nExamples:\n $ resin deploy myApp --build --source myBuildDir/\n $ resin deploy myApp myApp/myImage',
description: 'Deploy an image to a resin.io application',
help: 'Use this command to deploy an image to an application, optionally building it first.\n\nUsage: deploy <appName> ([image] | --build [--source build-dir])\n\nNote: If building with this command, all options supported by `resin build`\nare also supported with this command.\n\nExamples:\n $ resin deploy myApp --build --source myBuildDir/\n $ resin deploy myApp myApp/myImage',
permission: 'user',
options: dockerUtils.appendOptions([
{

View File

@ -1354,7 +1354,7 @@ Run an emulated build using Qemu
## deploy &#60;appName&#62; [image]
Use this command to deploy and optionally build an image to an application.
Use this command to deploy an image to an application, optionally building it first.
Usage: deploy <appName> ([image] | --build [--source build-dir])

View File

@ -126,9 +126,9 @@ uploadToPromise = (uploadRequest, logStreams) ->
module.exports =
signature: 'deploy <appName> [image]'
description: 'Deploy a container to a resin.io application'
description: 'Deploy an image to a resin.io application'
help: '''
Use this command to deploy and optionally build an image to an application.
Use this command to deploy an image to an application, optionally building it first.
Usage: deploy <appName> ([image] | --build [--source build-dir])