Missing the 'r' on the end.

I missed adding the 'r' to the end of the function.  Fixing this so that instead of `vssh` which we already have an alias for, we have instead `vsshr`.
pull/991/head
Rod Treweek 2017-06-28 17:44:11 -07:00 committed by GitHub
parent 3218f2799e
commit 138139c25e
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# Simple function for vagrant ssh that immediately switches to root. # Simple function for vagrant ssh that immediately switches to root.
function vssh() { function vsshr() {
vagrant ssh $1 -- -t 'sudo su -; /bin/bash' vagrant ssh $1 -- -t 'sudo su -; /bin/bash'
} }