Skip to content

Commit

Permalink
Formatting fixes in help output
Browse files Browse the repository at this point in the history
Change-Id: I2c49197a37b18e79a36bf0da417ae737d5878d74
  • Loading branch information
oppegard committed Sep 7, 2012
1 parent 7bd1aac commit d24280c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cli/lib/cli/commands/deployment.rb
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def delete(name, *options)
end

# usage "validate jobs"
# desc "Validates all jobs in the current release using current" +
# desc "Validates all jobs in the current release using current " +
# "deployment manifest as the source of properties"
# route :deployment, :validate_jobs
def validate_jobs
Expand Down
2 changes: 1 addition & 1 deletion cli/lib/cli/commands/job_rename.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class JobRename < Base
include Bosh::Cli::DeploymentHelper

# usage "rename <old_job_name> <new_job_name>"
# desc "renames a job. NOTE, your deployment manifest must also be " +
# desc "Renames a job. NOTE, your deployment manifest must also be " +
# "updated to reflect the new job name."
# power_option "--force"
# route :job_rename, :rename
Expand Down
2 changes: 1 addition & 1 deletion cli/lib/cli/commands/ssh.rb
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def execute_command(command, job, options, args)
end
end

# usage "scp <job> [index] (--upload|--download) [options]" +
# usage "scp <job> [index] (--upload|--download) [options] " +
# "/path/to/source /path/to/destination"
# desc "upload/download the source file to the given job. " +
# "Note: for dowload /path/to/destination is a directory"
Expand Down
6 changes: 3 additions & 3 deletions cli/lib/cli/runner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def define_commands

command :validate_jobs do
usage "validate jobs"
desc "Validates all jobs in the current release using current" +
desc "Validates all jobs in the current release using current " +
"deployment manifest as the source of properties"
route :deployment, :validate_jobs
end
Expand All @@ -265,7 +265,7 @@ def define_commands
end

command :scp do
usage "scp <job> [index] (--upload|--download) [options]" +
usage "scp <job> [index] (--upload|--download) [options] " +
"/path/to/source /path/to/destination"
desc "upload/download the source file to the given job. " +
"Note: for dowload /path/to/destination is a directory"
Expand Down Expand Up @@ -359,7 +359,7 @@ def define_commands

command :rename_job do
usage "rename <old_job_name> <new_job_name>"
desc "renames a job. NOTE, your deployment manifest must also be " +
desc "Renames a job. NOTE, your deployment manifest must also be " +
"updated to reflect the new job name."
power_option "--force"
route :job_rename, :rename
Expand Down

0 comments on commit d24280c

Please sign in to comment.