This commit is contained in:
Scott Simontis 2020-01-28 00:25:20 +01:00 committed by GitHub
commit b8df99407c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -15,6 +15,7 @@ module Vagrant
# Number of seconds to wait while attempting to get powershell version
DEFAULT_VERSION_DETECTION_TIMEOUT = 30
LOGGER = Log4r::Logger.new("vagrant::util::powershell")
POWERSHELL_CORE_EXE = "pwsh"
# @return [String|nil] a powershell executable, depending on environment
def self.executable
@ -34,6 +35,8 @@ module Vagrant
@_powershell_executable = nil
end
end
elsif !Which.which(POWERSHELL_CORE_EXE).nil?
@_powershell_executable = POWERSHELL_CORE_EXE
else
@_powershell_executable = nil
end