Skip to content

Commit

Permalink
Fix bug in script to install dependencies (#462)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbkyang-nvi authored Jan 18, 2024
1 parent 1e94f0a commit 24c1ff7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ for OPTS; do
done
set -x

if [ ${INCLUDE_DEVELOPER_TOOLS_SERVER} -ne 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 24c1ff7

Please sign in to comment.