Skip to content

Commit

Permalink
Bug in PR#1142 (antrea-io#1248)
Browse files Browse the repository at this point in the history
manifest generation failing in release mode.
Fixed the bug.
  • Loading branch information
srikartati authored and wenyingd committed Oct 27, 2020
1 parent dda3b81 commit b454596
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/generate-manifest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ if [ "$MODE" == "release" ] && [ -z "$IMG_TAG" ]; then
exit 1
fi

if [ "$MODE" == "release" ] && [ ! -z "$VERBOSE_LOG" ]; then
if [ "$MODE" == "release" ] && $VERBOSE_LOG; then
echoerr "--verbose-log works only with 'dev' mode"
print_help
exit 1
Expand Down

0 comments on commit b454596

Please sign in to comment.