X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=_webi%2Ftemplate.ps1;h=6ddd2fcee73bc4242c53bba48e09eda27a03eff4;hb=e2ade2382b346024c0f74092263230b488bf80e4;hp=38e60e161292c6f4b7138fefead0c97535a22fde;hpb=4fc5872ada48c597e549dbf868438a0ecbaf81b1;p=webi-installers%2F.git diff --git a/_webi/template.ps1 b/_webi/template.ps1 index 38e60e1..6ddd2fc 100644 --- a/_webi/template.ps1 +++ b/_webi/template.ps1 @@ -1,5 +1,10 @@ #!/usr/bin/env pwsh +# this allows us to call ps1 files, which allows us to have spaces in filenames +# ('powershell "$Env:USERPROFILE\test.ps1" foo' will fail if it has a space in +# the path but '& "$Env:USERPROFILE\test.ps1" foo' will work even with a space) +Set-ExecutionPolicy -Scope Process Bypass + # If a command returns an error, halt the script. $ErrorActionPreference = 'Stop'