diff options
| -rwxr-xr-x | build.sh | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -336,7 +336,13 @@ if [[ -n ${TARGETS:-""} ]]; then done else source env.sh "" - build + if [[ "$(uname -s)" == "Darwin" ]]; then + # Provide target for non-universal macOS builds to use the same output location as for + # universal builds + build "$ENV_TARGET" + else + build + fi fi ################################################################################ |
