From 0fa61f86261e25b5721971b693caa312ba99bc9d Mon Sep 17 00:00:00 2001 From: billz Date: Thu, 7 Nov 2019 20:12:41 +0000 Subject: [PATCH] Bugfix --- installers/raspbian.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/installers/raspbian.sh b/installers/raspbian.sh index 2c915abd..de6036c4 100755 --- a/installers/raspbian.sh +++ b/installers/raspbian.sh @@ -8,13 +8,13 @@ # -y, --yes, --assume-yes # Assume "yes" as answer to all prompts and run non-interactively # -# c, --crt, --certficate +# c, --cert, --certficate # Installs mkcert and generates an SSL certificate for lighttpd UPDATE_URL="https://raw.githubusercontent.com/billz/raspap-webgui/master/" VERSION=$(curl -s "https://api.github.com/repos/billz/raspap-webgui/releases/latest" | grep -Po '"tag_name": "\K.*?(?=")' ) USAGE=$'Usage: raspbian.sh [OPTION] \n\n-y, --yes, --assume-yes\n\tAssumes "yes" as an answer to all prompts' -USAGE+=$'\n-c, --crt, --certficate\n\tInstalls an SSL certificate for lighttpd\n' +USAGE+=$'\n-c, --cert, --certficate\n\tInstalls an SSL certificate for lighttpd\n' assume_yes=0 @@ -24,7 +24,7 @@ while :; do assume_yes=1 apt_option="-y" ;; - -c|--crt|--certificate) + -c|--cert|--certificate) install_cert=1 ;; -*|--*) @@ -85,12 +85,12 @@ function update_system_packages() { if [ "${install_cert:-}" = 1 ]; then source="mkcert" - wget -q ${UPDATE_URL}installers/${source}.sh -O /tmp/raspap_${source} + wget -q ${UPDATE_URL}installers/${source}.sh -O /tmp/raspap_${source}.sh source /tmp/raspap_${source}.sh && rm -f /tmp/raspap_${source}.sh install_certificate else source="common" - wget -q ${UPDATE_URL}installers/${source}.sh -O /tmp/raspap_${source} + wget -q ${UPDATE_URL}installers/${source}.sh -O /tmp/raspap_${source}.sh source /tmp/raspap_${source}.sh && rm -f /tmp/raspap_${source}.sh install_raspap fi