X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=_webi%2Ftemplate.ps1;h=6ddd2fcee73bc4242c53bba48e09eda27a03eff4;hb=72406c4e0d438b76da054be8d5eff42d08312498;hp=dc0699db33b0b9d65be92508d213991013a07941;hpb=4e92e3b69ae6d7c14acb5c4d869eec12e1279f07;p=webi-installers%2F.git diff --git a/_webi/template.ps1 b/_webi/template.ps1 index dc0699d..6ddd2fc 100644 --- a/_webi/template.ps1 +++ b/_webi/template.ps1 @@ -1,4 +1,11 @@ -# If a command returns an error, halt the script. +#!/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' # Ignore progress events from cmdlets so Invoke-WebRequest is not painfully slow @@ -31,8 +38,17 @@ if (!(Test-Path -Path .local\opt)) # {{ baseurl }} # {{ version }} +function webi_add_path +{ + & "$Env:USERPROFILE\.local\bin\pathman.exe" add "$args[0]" + # Note: not all of these work as expected, so we use the unix-style, which is most consistent + #& "$Env:USERPROFILE\.local\bin\pathman.exe" add ~/.local/bin + #& "$Env:USERPROFILE\.local\bin\pathman.exe" add "$Env:USERPROFILE\.local\bin" + #& "$Env:USERPROFILE\.local\bin\pathman.exe" add %USERPROFILE%\.local\bin +} + # Run pathman to set up the folder -& "$Env:USERPROFILE\.local\bin\pathman.exe" add "$Env:USERPROFILE\.local\.bin" +& "$Env:USERPROFILE\.local\bin\pathman.exe" add ~/.local/bin {{ installer }}