Skip to content

Commit

Permalink
Improve case ;;
Browse files Browse the repository at this point in the history
Signed-off-by: Henner Zeller <h.zeller@acm.org>
  • Loading branch information
hzeller committed Apr 9, 2020
1 parent 3f52998 commit 36294df
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion common/util/create_version_header.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ BAZEL_VOLATILE=bazel-out/volatile-status.txt
(while read NAME VALUE ; do
case $NAME in
# Only select the ones we're interested in.
GIT_* | BUILD_TIMESTAMP) echo "#define VERIBLE_${NAME} ${VALUE}"
GIT_* | BUILD_TIMESTAMP)
echo "#define VERIBLE_${NAME} ${VALUE}"
;;
esac
done) < "$BAZEL_VOLATILE"

0 comments on commit 36294df

Please sign in to comment.