From d7fd70ebb79bf6218219d40aee011499ac7b3786 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Fri, 23 Mar 2018 20:06:49 -0500 Subject: [PATCH] Update upscripts-install.sh --- upscripts-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/upscripts-install.sh b/upscripts-install.sh index 9aa236f..bc49f76 100755 --- a/upscripts-install.sh +++ b/upscripts-install.sh @@ -3,12 +3,12 @@ if [ "$EUID" -ne 0 ]; then sudo set -eu - sudo git clone http://git.schroedercity.com/voltron/LinUPx.git /opt/LinUPx + sudo git -c http.sslVerify=false clone http://git.schroedercity.com/voltron/LinUPx.git /opt/LinUPx sudo ln -s /opt/LinUPx/run.sh /usr/local/bin/runup sudo rm -f /opt/LinUPx/upscripts-install.sh else set -eu - git clone http://git.schroedercity.com/voltron/LinUPx.git /opt/LinUPx + git -c http.sslVerify=false clone http://git.schroedercity.com/voltron/LinUPx.git /opt/LinUPx ln -s /opt/LinUPx/run.sh /usr/local/bin/runup rm -f /opt/LinUPx/upscripts-install.sh fi