Skip to content

Commit 101faa6

Browse files
committed
Clean up; turn on PIPE_FAIL
1 parent 77dc0f2 commit 101faa6

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

dev/conda/conda-build.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/zsh
22
set -eu
3+
setopt PIPE_FAIL
34

45
# CONDA BUILD
56
# Generic wrapper around `conda build'
@@ -165,12 +166,6 @@ export PYTHONWARNINGS="ignore::UserWarning"
165166
log "BUILD: START"
166167
print
167168
(
168-
if [[ -o e ]] {
169-
print e on
170-
} else {
171-
print e off
172-
}
173-
exit 1
174169
log "using python: " $( which python )
175170
log "using conda: " $( which conda )
176171
print

dev/jenkins/anaconda.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,6 @@ if (( GNU_TIME )) {
176176
tm()
177177
{
178178
=time --format "TASK TIME: %E" ${*}
179-
local CODE=${?}
180-
echo "tm(): CODE=$CODE"
181-
return $CODE
182179
}
183180
} else {
184181
tm()

0 commit comments

Comments
 (0)