funs.sh 172 B

123456789
  1. # utilities used in CI pipelines to avoid duplication.
  2. echo_run () {
  3. # echo's a command before running it, which helps understanding logs
  4. echo ""
  5. echo "$@"
  6. "$@"
  7. }