No need to use sudo to check if redir is installed

This commit is contained in:
Fabio Rehm 2013-07-27 20:44:36 -03:00
parent d2e354839f
commit 2dbfd23915

View file

@ -89,7 +89,7 @@ module Vagrant
end
def redir_installed?
system "sudo which redir > /dev/null"
system "which redir > /dev/null"
end
end
end