Skip to content

Commit

Permalink
wrong error in ssh command arg[1] -> argv[1]
Browse files Browse the repository at this point in the history
  • Loading branch information
jedi4ever committed Apr 17, 2012
1 parent 1178a23 commit ec6f2ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/veewee/command/vagrant/ssh.rb
Expand Up @@ -25,7 +25,7 @@ def execute
begin
venv=Veewee::Environment.new(options)
venv.ui=@env.ui
venv.providers["virtualbox"].get_box(argv[0]).issh(arg[1])
venv.providers["virtualbox"].get_box(argv[0]).issh(argv[1])
rescue Veewee::Error => ex
venv.ui.error(ex,:prefix => false)
exit -1
Expand Down

0 comments on commit ec6f2ad

Please sign in to comment.