X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=_webi%2Ftemplate.ps1;h=632b72d5f2ac14af5bd97048bfbc241fb8604f26;hb=refs%2Fremotes%2Forigin%2FHEAD;hp=5eca6fac01b204046225309ee25e5b71d897099b;hpb=58841a30031e1c560ab2a4942ce91b69de0ed601;p=webi-installers%2F.git diff --git a/_webi/template.ps1 b/_webi/template.ps1 index 5eca6fa..632b72d 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' @@ -16,27 +21,30 @@ $Env:WEBI_HOST = 'https://webinstall.dev' # Switch to userprofile pushd $Env:USERPROFILE -# Make paths if needed -if (!(Test-Path -Path Downloads)) -{ - New-Item -Path Downloads -ItemType Directory -} -if (!(Test-Path -Path .local\bin)) -{ - New-Item -Path .local\bin -ItemType Directory -} -if (!(Test-Path -Path .local\opt)) -{ - New-Item -Path .local\opt -ItemType Directory -} +# Make paths +New-Item -Path Downloads -ItemType Directory -Force | out-null +New-Item -Path .local\bin -ItemType Directory -Force | out-null +New-Item -Path .local\opt -ItemType Directory -Force | out-null # {{ baseurl }} # {{ version }} +function webi_add_path +{ + Write-Host '' + Write-Host '*****************************' -ForegroundColor red -BackgroundColor white + Write-Host '* IMPORTANT - READ ME *' -ForegroundColor red -BackgroundColor white + Write-Host '*****************************' -ForegroundColor red -BackgroundColor white + Write-Host '' + & "$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 ~/.local/bin -#& "$Env:USERPROFILE\.local\bin\pathman.exe" add "$Env:USERPROFILE\.local\bin" -#& "$Env:USERPROFILE\.local\bin\pathman.exe" add %USERPROFILE%\.local\bin {{ installer }}