From 02ac7a0e88f2da1290e52eb66b1d94ac9780751e Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Tue, 29 Dec 2015 23:55:44 -0600 Subject: [PATCH] Basic OS X compatibility: It works --- remap.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/remap.sh b/remap.sh index 3afed48..3bd79f3 100755 --- a/remap.sh +++ b/remap.sh @@ -21,6 +21,13 @@ if [ ! -f "$jarpath.jar" ]; then fi fi +# OS X doesn't have md5sum, just md5 -r +if [[ "$OSTYPE" == "darwin"* ]]; then + shopt -s expand_aliases + alias md5sum='md5 -r' + echo "Using an alias for md5sum on OS X" +fi + checksum=$(md5sum "$jarpath.jar" | cut -d ' ' -f 1) if [ "$checksum" != "$minecrafthash" ]; then echo "The MD5 checksum of the downloaded server jar does not match the BuildData hash."