mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-24 00:03:11 +01:00
Fix sha256sum generation on OS X.
This commit is contained in:
@@ -197,7 +197,11 @@ fi
|
|||||||
|
|
||||||
download_libs
|
download_libs
|
||||||
# mind the gap (trailing space)
|
# mind the gap (trailing space)
|
||||||
sha256sum $cachedir/orctlibs.zip | cut -f1 -d\ > $libVFile
|
if [[ `uname` == "Darwin" ]]; then
|
||||||
|
shasum -a 256 $cachedir/orctlibs.zip | cut -f1 -d\ > $libVFile
|
||||||
|
else
|
||||||
|
sha256sum $cachedir/orctlibs.zip | cut -f1 -d\ > $libVFile
|
||||||
|
fi
|
||||||
echo "Downloaded library with sha256sum: $(cat $libVFile)"
|
echo "Downloaded library with sha256sum: $(cat $libVFile)"
|
||||||
# Local libs are required for all targets
|
# Local libs are required for all targets
|
||||||
install_local_libs
|
install_local_libs
|
||||||
|
|||||||
Reference in New Issue
Block a user