From 31cfce7874de6179dad3e6f4d153a788d3d3866e Mon Sep 17 00:00:00 2001 From: Joseph Coffland Date: Fri, 1 Dec 2017 10:54:26 -0800 Subject: [PATCH] Fixed install options --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index 7e09eae..026d368 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -3,7 +3,7 @@ UPDATE_AVR=true UPDATE_PY=true -while [[ $# -gt 1 ]]; do +while [ $# -gt 0 ]; do case "$1" in --no-avr) UPDATE_AVR=false ;; --no-py) UPDATE_PY=false ;; -- 2.27.0