refactor(posix): don't run scripts with bash unnecessarily

This commit is contained in:
AJ ONeal
2022-08-21 07:30:55 +00:00
parent d2fdc7b41a
commit b12b06eedd
19 changed files with 22 additions and 26 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ set -u
__redirect_alias_python() {
echo "'python@${WEBI_TAG:-stable}' is an alias for 'python@${WEBI_VERSION:-}'"
WEBI_HOST=${WEBI_HOST:-"https://webinstall.dev"}
curl -fsSL "$WEBI_HOST/python@${WEBI_VERSION:-}" | bash
curl -fsSL "$WEBI_HOST/python@${WEBI_VERSION:-}" | sh
}
__redirect_alias_python