Skip to content

Commit

Permalink
PMM-13487 Fix the boolean logic
Browse files Browse the repository at this point in the history
  • Loading branch information
ademidoff committed Nov 21, 2024
1 parent 5174e3f commit c71328c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/local/build
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ parse_params() {
NO_CLIENT_DOCKER=0
;;
--no-client-docker)
if [ "$NO_CLIENT_DOCKER" -eq 1 ]; then
echo "Error. Mutually exclusive options: --client-docker and --no-client-docker"
if [ "$NO_CLIENT" -eq 1 ]; then
echo "Error. Mutually exclusive options: --client-docker and --no-client"
exit 1
fi
NO_CLIENT_DOCKER=1
Expand Down

0 comments on commit c71328c

Please sign in to comment.