This patch allows Paper to be build on FreeBSD using the paper script. FreeBSD also doesn't have md5sum and uses md5, just like OS X. As such I added an extra check for the presence of FreeBSD.

This commit is contained in:
ShelLuser 2018-02-22 11:43:31 +01:00
parent a32ff9fc0b
commit 0c7e011b78
1 changed files with 3 additions and 3 deletions

View File

@ -23,11 +23,11 @@ if [ ! -f "$jarpath.jar" ]; then
fi
fi
# OS X doesn't have md5sum, just md5 -r
if [[ "$OSTYPE" == "darwin"* ]]; then
# OS X & FreeBSD don't have md5sum, just md5 -r
if [[ "$OSTYPE" == "darwin"* || "$(uname)" == "FreeBSD" ]]; then
shopt -s expand_aliases
alias md5sum='md5 -r'
echo "Using an alias for md5sum on macOS"
echo "Using an alias for md5sum on macOS and/or FreeBSD"
fi
checksum=$(md5sum "$jarpath.jar" | cut -d ' ' -f 1)