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 afe0ff5 commit 433f8b2Copy full SHA for 433f8b2
build.sh
@@ -4,6 +4,10 @@ ADDON_ARCH="$1"
4
LANGUAGE_NAME="$2"
5
LANGUAGE_VERSION="$3"
6
7
+echo "ADDON_ARCH: $ADDON_ARCH"
8
+echo "LANGUAGE_NAME: $LANGUAGE_NAME"
9
+echo "LANGUAGE_VERSION: $LANGUAGE_VERSION"
10
+
11
function map_posix_tools() {
12
tar() {
13
gtar "$@"
@@ -55,12 +59,12 @@ function build_cross_compiled() {
55
59
56
60
if [[ $LANGUAGE_VERSION -gt 14 ]]
57
61
then
58
- echo "The node version is greater than 14."
62
+ echo "The node version is greater than 14: $LANGUAGE_VERSION"
63
install_linux_cross_compiler
64
build_native
65
66
else
- echo "The node version is 14 or less."
67
+ echo "The node version is 14 or less: $LANGUAGE_VERSION"
68
case "${ADDON_ARCH}" in
69
darwin-x64)
70
install_osx_compiler
0 commit comments