Skip to content

Commit

Permalink
revert intentional error condition
Browse files Browse the repository at this point in the history
  • Loading branch information
soliton- committed Mar 5, 2019
1 parent dba3bb5 commit 4002128
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions utils/travis/docker_run.sh
@@ -1,7 +1,7 @@
#!/bin/bash

red=$'\e[31m' # $(tput setaf 1)
reset=$'\e[m\x0F' # $(tput sgr0)
red=$(tput setaf 1)
reset=$(tput sgr0)
# print given message in red
error() { printf '%s%s%s\n' "$red" "$*" "$reset"; }
# print given message and exit
Expand Down Expand Up @@ -92,8 +92,7 @@ else
exit $BUILD_RET
fi

# if (( SECONDS > 60*build_timeout )); then
if true; then
if (( SECONDS > 60*build_timeout )); then
die "Insufficient time remaining to execute unit tests. Exiting now to allow caching to occur. Please restart the job."
fi

Expand Down

0 comments on commit 4002128

Please sign in to comment.