From: Joseph Coffland Date: Fri, 1 Dec 2017 18:54:26 +0000 (-0800) Subject: Fixed install options X-Git-Url: https://git.buildbotics.com/?a=commitdiff_plain;h=31cfce7874de6179dad3e6f4d153a788d3d3866e;p=bbctrl-firmware Fixed install options --- 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 ;;