mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-04-22 09:56:35 +00:00
45 lines
1.1 KiB
PowerShell
45 lines
1.1 KiB
PowerShell
#!/usr/bin/env pwsh
|
|
|
|
# If a command returns an error, halt the script.
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
# Ignore progress events from cmdlets so Invoke-WebRequest is not painfully slow
|
|
$ProgressPreference = 'SilentlyContinue'
|
|
|
|
$Env:WEBI_HOST = 'https://webinstall.dev'
|
|
#$Env:WEBI_PKG = 'node@lts'
|
|
#$Env:PKG_NAME = node
|
|
#$Env:WEBI_VERSION = v12.16.2
|
|
#$Env:WEBI_PKG_URL = "https://.../node-....zip"
|
|
#$Env:WEBI_PKG_FILE = "node-v12.16.2-win-x64.zip"
|
|
|
|
# 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
|
|
}
|
|
|
|
# {{ baseurl }}
|
|
# {{ version }}
|
|
|
|
# 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 }}
|
|
|
|
# Done
|
|
popd
|