From ffe419d538a105f501c17806597e044604e3a98e Mon Sep 17 00:00:00 2001 From: Ben Peddell Date: Thu, 20 Aug 2020 09:38:24 +1000 Subject: [PATCH] Add repo override in netinstall.sh --- netinstall.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/netinstall.sh b/netinstall.sh index 4c1e2f6..0a82124 100644 --- a/netinstall.sh +++ b/netinstall.sh @@ -19,8 +19,9 @@ installservice= for arg in "$@"; do case "$arg" in --verbose) output=/dev/fd/1; ;; - --output=*) output="${1#--output=}"; ;; + --output=*) output="${arg#--output=}"; ;; --unstable) unstable=1; ;; + --repo=*) arkstGithubRepo="${arg#--repo=}"; ;; --perform-user-install) userinstall2=yes; ;; --yes-i-really-want-to-perform-a-user-install) userinstall=yes; ;; *)