fix: Use correct Quotation marks on line 65 (#942)

This commit is contained in:
nevin 2021-09-16 21:33:18 -04:00 committed by GitHub
parent 33fa15a235
commit 93fbf8dd97
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -62,7 +62,7 @@ function Test-CommandExists {
param ($command)
$oldPreference = $ErrorActionPreference
$ErrorActionPreference = stop
$ErrorActionPreference = "stop"
try {
if(Get-Command $command){ return $true }