fix: Use correct Quotation marks on line 65 (#942)
This commit is contained in:
parent
33fa15a235
commit
93fbf8dd97
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ function Test-CommandExists {
|
||||||
param ($command)
|
param ($command)
|
||||||
|
|
||||||
$oldPreference = $ErrorActionPreference
|
$oldPreference = $ErrorActionPreference
|
||||||
$ErrorActionPreference = ‘stop’
|
$ErrorActionPreference = "stop"
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if(Get-Command $command){ return $true }
|
if(Get-Command $command){ return $true }
|
||||||
|
|
Loading…
Add table
Reference in a new issue