From dc231ec460ccdb0381b450cecd4f3516fb281207 Mon Sep 17 00:00:00 2001 From: srdusr Date: Fri, 3 Oct 2025 17:33:28 +0200 Subject: Testing one liner installer command --- common/install.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/common/install.sh b/common/install.sh index cea4b52..cb7a467 100755 --- a/common/install.sh +++ b/common/install.sh @@ -10,13 +10,13 @@ # POSIX-compatible shim: if not running under bash (e.g., invoked via `sh -c "$(curl ...)"`), # re-exec the remainder of this script with bash. -if [ -z "${BASH_VERSION:-}" ]; then - tmp="$(mktemp)" || exit 1 - # Read the rest of the script into a temp file, then exec bash on it - cat > "$tmp" - exec bash "$tmp" "$@" - exit 1 -fi +#if [ -z "${BASH_VERSION:-}" ]; then +# tmp="$(mktemp)" || exit 1 +# # Read the rest of the script into a temp file, then exec bash on it +# cat > "$tmp" +# exec bash "$tmp" "$@" +# exit 1 +#fi set -euo pipefail # Exit on error, undefined vars, pipe failures -- cgit v1.2.3