Merge pull request #8659 from HarryWeppner/docker-compose-check

fix `docker-compose` check on `PATH`
This commit is contained in:
Chris Roberts 2017-06-14 15:24:25 -07:00 committed by GitHub
commit fe10b45cdb
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()