Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jbkyang-nvi committed Oct 5, 2023
1 parent 7c510ba commit b10d9f1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ JAVACPP_BRANCH=${JAVACPP_BRANCH:="https://github.com/bytedeco/javacpp-presets.gi
JAVACPP_BRANCH_TAG=${JAVACPP_BRANCH_TAG:="master"}
CMAKE_VERSION=${CMAKE_VERSION:="3.21.1"}
export JAR_INSTALL_PATH="/workspace/install/java-api-bindings"
# Note: True/success == 1 and False != 0
# Note: True != 0 and False == 0
export INCLUDE_DEVELOPER_TOOLS_SERVER=0
KEEP_BUILD_DEPENDENCIES=1

Expand Down Expand Up @@ -111,7 +111,7 @@ for OPTS; do
done
set -x

if [ ${INCLUDE_DEVELOPER_TOOLS_SERVER} -eq 0 ]; then
if [ ${INCLUDE_DEVELOPER_TOOLS_SERVER} -ne 0]; then
# install cmake and rapidjson
apt-get update && apt-get install -y gpg wget && \
wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | \
Expand Down

0 comments on commit b10d9f1

Please sign in to comment.