fix check for `docker-compose`

This commit is contained in:
Harry Weppner 2017-06-08 11:09:41 -07:00
parent 378aae8782
commit 250e74cb79
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ module VagrantPlugins
#
# @param [Vagrant::Machine] machine Machine instance for this driver
def initialize(machine)
if !Vagrant::Util::Which.which("vagrant-compose")
if !Vagrant::Util::Which.which("docker-compose")
raise Errors::DockerComposeNotInstalledError
end
super()