Move up doc string for `vagrant snapshot pop`

This commit moves up the doc string for the command `vagrant snapshot
pop` Prior to this commit it was hidden in between command line flags.
This commit is contained in:
Brian Cain 2019-04-09 13:14:44 -07:00
parent 75d4aa42a1
commit 46e42ed884
No known key found for this signature in database
GPG Key ID: 9FC4639B2E4510A0
1 changed files with 3 additions and 1 deletions

View File

@ -23,8 +23,10 @@ module VagrantPlugins
opts = OptionParser.new do |o|
o.banner = "Usage: vagrant snapshot pop [options] [vm-name]"
o.separator ""
o.separator "Restore state that was pushed onto the snapshot stack"
o.separator "with `vagrant snapshot push`."
o.separator ""
build_start_options(o, options)
o.separator "Restore state that was pushed with `vagrant snapshot push`."
o.on("--no-delete", "Don't delete the snapshot after the restore") do
options[:snapshot_delete] = false