2018-12-18 14:27:37 -08:00
|
|
|
# Buildkite log management helper
|
|
|
|
#
|
|
|
|
# See https://buildkite.com/docs/pipelines/managing-log-output
|
|
|
|
#
|
|
|
|
# |source| me
|
|
|
|
#
|
|
|
|
|
2020-03-24 20:10:20 -07:00
|
|
|
base_dir=$(realpath --strip "$(dirname "$0")/..")
|
|
|
|
|
2018-12-18 14:27:37 -08:00
|
|
|
_() {
|
2020-03-24 20:10:20 -07:00
|
|
|
if [[ $(pwd) = $base_dir ]]; then
|
|
|
|
echo "--- $*"
|
|
|
|
else
|
|
|
|
echo "--- $* (wd: $(pwd))"
|
|
|
|
fi
|
2018-12-18 14:27:37 -08:00
|
|
|
"$@"
|
|
|
|
}
|