Skip to content

Commit

Permalink
Bug in PR#1142 (#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 lzhecheng committed Nov 11, 2020
1 parent d365b5f commit 301814f
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 @@ -167,7 +167,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 301814f

Please sign in to comment.