diff --git a/lib/vagrant-parallels/driver/meta.rb b/lib/vagrant-parallels/driver/meta.rb index c3740cb5..5f4825d7 100644 --- a/lib/vagrant-parallels/driver/meta.rb +++ b/lib/vagrant-parallels/driver/meta.rb @@ -76,6 +76,7 @@ def initialize(uuid=nil) :delete_unused_host_only_networks, :disable_password_restrictions, :enable_adapters, + :execute_prlctl, :forward_ports, :halt, :clone_vm, @@ -125,7 +126,7 @@ def read_version # # But we need exactly the first 3 numbers: "x.x.x" - if execute_prlctl('--version') =~ /prlctl version (\d+\.\d+.\d+)/ + if execute(@prlctl_path, '--version') =~ /prlctl version (\d+\.\d+.\d+)/ return $1 end diff --git a/lib/vagrant-parallels/version.rb b/lib/vagrant-parallels/version.rb index db3c041f..0196c39a 100644 --- a/lib/vagrant-parallels/version.rb +++ b/lib/vagrant-parallels/version.rb @@ -1,5 +1,5 @@ module VagrantPlugins module Parallels - VERSION = '1.4.0' + VERSION = '1.4.1' end end