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 Felix Sargent
parent 7dc51f14c5
commit e4eaa89eff

View file

@ -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 }