mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-08-21 13:06:37 +00:00
12 lines
384 B
Bash
12 lines
384 B
Bash
#!/bin/bash
|
|
# title: Go (golang alias)
|
|
# homepage: https://webinstall.dev/golang
|
|
# tagline: Alias for https://webinstall.dev/golang
|
|
# alias: golang
|
|
# description: |
|
|
# See https://webinstall.dev/golang
|
|
|
|
echo "'go@${WEBI_TAG:-stable}' is an alias for 'golang@${WEBI_VERSION:-}'"
|
|
WEBI_HOST=${WEBI_HOST:-"https://webinstall.dev"}
|
|
curl -fsSL "$WEBI_HOST/golang@${WEBI_VERSION:-}" | bash
|