Fix bug when using build-mac.sh and remove cryptoconditions from mac+win build scripts

This commit is contained in:
Duke
2024-06-08 07:16:37 -07:00
parent 1526a754d2
commit 46c738500f
3 changed files with 5 additions and 17 deletions

View File

@@ -9,11 +9,13 @@ set -eu -o pipefail
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
./util/build.sh --disable-tests $@
elif [[ "$OSTYPE" == "darwin"* ]]; then
./util/build-mac.sh --disable-tests $@
# code from ./util/build.sh needs to be ported to support --disable-tests
#./util/build-mac.sh --disable-tests $@
./util/build-mac.sh $@
elif [[ "$OSTYPE" == "msys"* ]]; then
./util/build-win.sh --disable-tests $@
#elif [[ "$OSTYPE" == "freebsd"* ]]; then
# placeholder
elif [[ "$OSTYPE" == "freebsd"* ]]; then
./util/build.sh --disable-tests $@
else
echo "Unable to detect your OS. What are you using?"
fi