diff --git a/easyinstall.sh b/easyinstall.sh index f358fad1..4f27a6b3 100755 --- a/easyinstall.sh +++ b/easyinstall.sh @@ -770,7 +770,7 @@ function setupWirelessNetworking() { # Downloads, compiles, and installs Netatalk (AppleShare server) function installNetatalk() { - NETATALK_VERSION="2-220702" + NETATALK_VERSION="2-220801" AFP_SHARE_PATH="$HOME/afpshare" AFP_SHARE_NAME="Pi File Server" @@ -793,7 +793,7 @@ function installMacproxy { echo -n "Enter a port number 1024 - 65535, or press Enter to use the default port: " read -r CHOICE - if [ $CHOICE -ge "1024" ] && [ $CHOICE -le "65535" ]; then + if [[ $CHOICE -ge "1024" ]] && [[ $CHOICE -le "65535" ]]; then PORT=$CHOICE else echo "Using the default port $PORT" @@ -801,20 +801,19 @@ function installMacproxy { ( sudo apt-get update && sudo apt-get install python3 python3-venv --assume-yes )