mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-04-06 10:26:49 +00:00
12 lines
264 B
Bash
12 lines
264 B
Bash
#!/bin/sh
|
|
set -e
|
|
set -u
|
|
|
|
__redirect_alias_trip() {
|
|
echo "'trippy@${WEBI_TAG:-stable}' is an alias for 'trip@${WEBI_VERSION-}'"
|
|
WEBI_HOST=${WEBI_HOST:-"https://webinstall.dev"}
|
|
curl -fsSL "$WEBI_HOST/trip@${WEBI_VERSION-}" | sh
|
|
}
|
|
|
|
__redirect_alias_trip
|