From 13fcfcb9648c5f85afdbc601959ace73687c4913 Mon Sep 17 00:00:00 2001 From: Pankaj Garg Date: Sat, 27 Apr 2019 20:37:36 -0700 Subject: [PATCH] Blockstreamer annotation fix for non buildkite deployments (#4045) --- net/net.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/net.sh b/net/net.sh index cb645a1cbe..7c62c6a086 100755 --- a/net/net.sh +++ b/net/net.sh @@ -188,7 +188,7 @@ else fi annotate() { - ${BUILDKITE:-false} && { + [[ -z $BUILDKITE ]] || { buildkite-agent annotate "$@" } }