From 36294dfb681929f01688e302b8aff9e92cf7ca21 Mon Sep 17 00:00:00 2001 From: Henner Zeller Date: Thu, 9 Apr 2020 14:09:57 -0700 Subject: [PATCH] Improve case ;; Signed-off-by: Henner Zeller --- common/util/create_version_header.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/util/create_version_header.sh b/common/util/create_version_header.sh index e91530ab6..579523a50 100755 --- a/common/util/create_version_header.sh +++ b/common/util/create_version_header.sh @@ -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"