Skip to content

Commit

Permalink
Attempt to debug 259 exit code on AppVeyor
Browse files Browse the repository at this point in the history
Let's try to dig in a bit more and see where this is coming from, it
looks like AppVeyor is also unsure where this is coming from!
  • Loading branch information
alexcrichton committed Jan 29, 2019
1 parent 106b3e9 commit ce279a8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/ci/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,14 @@ fi
travis_fold end log-system-info

if [ ! -z "$SCRIPT" ]; then
# This `set +e` followed by capturing the return value is a temporary measure
# to help debug "error with exit 259" on AppVeyor temporarily, otherwise all
# that's needed here is the `sh`
set +e
sh -x -c "$SCRIPT"
ret=$?
echo "script exited with $ret"
exit $ret
else
do_make() {
travis_fold start "make-$1"
Expand Down

0 comments on commit ce279a8

Please sign in to comment.