mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-03-06 11:20:26 +00:00
12 lines
292 B
Bash
12 lines
292 B
Bash
#!/bin/bash
|
|
set -e
|
|
set -u
|
|
|
|
__redirect_alias_powershell() {
|
|
echo "'pwsh@${WEBI_TAG:-stable}' is an alias for 'powershell@${WEBI_VERSION:-}'"
|
|
WEBI_HOST=${WEBI_HOST:-"https://webinstall.dev"}
|
|
curl -fsSL "$WEBI_HOST/powershell@${WEBI_VERSION:-}" | bash
|
|
}
|
|
|
|
__redirect_alias_powershell
|