gerrit/tools/workspace-status.sh
Han-Wen Nienhuys 97c8fb0f56 workspace-status.sh: quote 'tr' arguments.
Otherwise, the shell may interpret [a-z], leading to version strings
such as

  STABLE_BUILD_superm[nifest_LABEL 6010213-dirty

Change-Id: I5846efc03419e7361d3171df14646c96f66118ac
2017-01-12 16:44:03 +01:00

23 lines
616 B
Bash
Executable File

#!/bin/bash
# This script will be run by bazel when the build process starts to
# generate key-value information that represents the status of the
# workspace. The output should be like
#
# KEY1 VALUE1
# KEY2 VALUE2
#
# If the script exits with non-zero code, it's considered as a failure
# and the output will be discarded.
function rev() {
cd $1; git describe --always --match "v[0-9].*" --dirty
}
echo STABLE_BUILD_GERRIT_LABEL $(rev .)
for p in plugins/* ; do
test -d "$p" || continue
echo STABLE_BUILD_$(echo $(basename $p)_LABEL|tr '[a-z]' '[A-Z]' ) $(rev $p)
done
echo "STABLE_WORKSPACE_ROOT ${PWD}"