We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65fe9d4 commit 2d1e791Copy full SHA for 2d1e791
1 file changed
scripts/build-ios-app.sh
@@ -54,12 +54,17 @@ if ! command -v pod >/dev/null 2>&1; then
54
exit 1
55
fi
56
57
+ORIGINAL_JAVA_HOME="$JAVA_HOME"
58
+export JAVA_HOME="$JAVA17_HOME"
59
export PATH="$JAVA_HOME/bin:$MAVEN_HOME/bin:$PATH"
60
61
bia_log "Using JAVA_HOME at $JAVA_HOME"
62
+bia_log "Original JAVA_HOME was $ORIGINAL_JAVA_HOME"
63
bia_log "Using JAVA17_HOME at $JAVA17_HOME"
64
bia_log "Using Maven installation at $MAVEN_HOME"
65
bia_log "Using CocoaPods version $(pod --version 2>/dev/null || echo '<unknown>')"
66
+bia_log "Java version for Maven invocations:"
67
+"$JAVA_HOME/bin/java" -version
68
69
APP_DIR="scripts/hellocodenameone"
70
0 commit comments