Browse Source

helpers.sh: update to match main repo

master
Josh Hagins 8 years ago
parent
commit
6fb2b5b52a
  1. 6
      ci/travis/helpers.sh

6
ci/travis/helpers.sh

@ -18,13 +18,17 @@ NC='\033[0m' # no color
# log command before running and add a blank line
run () {
echo -e "${MAGENTA}>>>${NC} $*"
ohai "$*"
eval "$*"
local retval=$?
echo
return $retval
}
ohai () {
echo -e "${MAGENTA}>>>${NC} $*"
}
# print args as a cyan header
header () {
echo

Loading…
Cancel
Save