Skip to content

Commit 4f20348

Browse files
committedFeb 6, 2019
Revert "Rollup merge of rust-lang#58162 - pietroalbini:track-259, r=alexcrichton"
This reverts commit 4c243e2, reversing changes made to 64f0032.
1 parent b139669 commit 4f20348

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed
 

‎appveyor.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -207,10 +207,7 @@ test_script:
207207
- sh src/ci/init_repo.sh . /c/cache/rustsrc
208208
- set SRC=.
209209
- set NO_CCACHE=1
210-
# Added this debugging code to try tracking down https://github.com/rust-lang/rust/issues/58160
211-
# Replace it with the commented line below after the issue with AppVeyor is fixed
212-
- "sh src/ci/run.sh & set ret=%errorlevel% & echo exit code in appveyor.yml: %ret% & exit %ret%"
213-
# - sh src/ci/run.sh
210+
- sh src/ci/run.sh
214211

215212
on_failure:
216213
# Dump crash log

‎src/ci/run.sh

+1-7
Original file line numberDiff line numberDiff line change
@@ -127,13 +127,7 @@ if [ ! -z "$SCRIPT" ]; then
127127
set +e
128128
sh -x -c "$SCRIPT"
129129
ret=$?
130-
echo "exit code in src/ci/run.sh: $ret"
131-
132-
echo "tasklist:"
133-
tasklist
134-
echo -n "location of sh: "
135-
where sh
136-
130+
echo "script exited with $ret"
137131
exit $ret
138132
else
139133
do_make() {

0 commit comments

Comments
 (0)
Please sign in to comment.