Skip to content

Commit

Permalink
ci_build.sh: fix shell syntax that could confuse CANBUILD_LIBGD_CGI d…
Browse files Browse the repository at this point in the history
…etection

Signed-off-by: Jim Klimov <[email protected]>
  • Loading branch information
jimklimov committed Aug 12, 2024
1 parent 120cd2a commit 1476ad7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ if [ -z "${CANBUILD_LIBGD_CGI-}" ]; then

# NUT CI farm with Jenkins can build it; Travis could not
[[ "$CI_OS_NAME" = "freebsd" ]] && CANBUILD_LIBGD_CGI=yes \
|| [[ "$TRAVIS_OS_NAME" = "freebsd" ]] && CANBUILD_LIBGD_CGI=no
|| { [[ "$TRAVIS_OS_NAME" = "freebsd" ]] && CANBUILD_LIBGD_CGI=no ; }

# See also below for some compiler-dependent decisions
fi
Expand Down

0 comments on commit 1476ad7

Please sign in to comment.