From 59573e00acfb3081f0542f75fc4b0f5a4f9dc2a1 Mon Sep 17 00:00:00 2001 From: Tobias Schmidl Date: Tue, 23 Feb 2021 08:06:10 +0000 Subject: [PATCH] Aktualisieren bootstrap.sh --- bootstrap.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index 5416c76..fb3b5b3 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -4,9 +4,11 @@ set -e CURLOPT=${CURLOPT:-"--location --remote-time --remote-name --show-error --silent --fail --tlsv1.2"} # root part -curl "$CURLOPT" https://gitlab.com/schtobia/bootstrap/raw/master/bootstrap-root.sh \ +# shellcheck disable=SC208 +curl $CURLOPT https://gitlab.com/schtobia/bootstrap/raw/master/bootstrap-root.sh \ && chmod +x bootstrap-root.sh # userspace part -curl "$CURLOPT" https://gitlab.com/schtobia/bootstrap/raw/master/bootstrap-user.sh \ +# shellcheck disable=SC208 +curl $CURLOPT https://gitlab.com/schtobia/bootstrap/raw/master/bootstrap-user.sh \ && chmod +x bootstrap-user.sh