Browse Source

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

xmkb
nevin 3 years ago committed by GitHub
parent
commit
93fbf8dd97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docs/src/templates/setup.ps1.mustache

2
docs/src/templates/setup.ps1.mustache

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

Loading…
Cancel
Save