Commit 832d752d authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

fix(bash mode): unmask errors in shell pipelines with 'set -o pipefail'

parent 66e43c0f
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ variables:
  YAJSV_RELEASE: "https://github.com/neilpa/yajsv/releases/download/v1.4.1/yajsv.linux.amd64"

.kicker-scripts: &kicker-scripts |
  set -e
  set -eo pipefail
  function log_info() {
     echo -e "[\e[1;94mINFO\e[0m] $*"
  }