Files
Nim/ci/funs.sh
2021-03-10 19:35:20 -08:00

9 lines
172 B
Bash

# utilities used in CI pipelines to avoid duplication.
echo_run () {
# echo's a command before running it, which helps understanding logs
echo ""
echo "$@"
"$@"
}