We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e887d1 commit d690658Copy full SHA for d690658
1 file changed
dtcw
@@ -121,7 +121,7 @@ main() {
121
emu=""
122
if [ "${os}" = "Darwin" ] && [ "${arch}" = "arm64" ]; then
123
echo "Apple silicon detected, using x86_64 mode and os native bash"
124
- emu="arch -x86_64"
+ emu="/usr/bin/arch -x86_64"
125
bash="/bin/bash"
126
fi
127
@@ -541,7 +541,9 @@ local_install_java() {
541
542
case "${os}" in
543
Linux) os=linux ;;
544
- Darwin) os=mac ;;
+ Darwin) os=mac
545
+ # Enforce usage of Intel Java as long as jbake does not work on Apple Silicon
546
+ arch=x64 ;;
547
Cygwin) os=linux ;;
548
esac
549
mkdir -p "${DTC_JAVA_HOME}"
0 commit comments