Skip to content

Commit 255f9c7

Browse files
committed
remove pipefail in test script + shellcheck
for #165 Signed-off-by: clux <sszynrae@gmail.com>
1 parent 1978758 commit 255f9c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ function docker_build() {
2828
--workdir /volume \
2929
--platform "${PLATFORM}" \
3030
test-runner \
31-
bash -ex -o pipefail -c "
31+
bash -ex -c "
3232
'${CRATE_ARTIFACT}'
3333
ldd '${CRATE_ARTIFACT}' 2>&1 \
3434
| grep -qE 'not a dynamic|statically linked' \
35-
&& echo '${crate} is a static executable'
35+
&& echo '${CRATE_NAME} is a static executable'
3636
"
3737
}
3838

0 commit comments

Comments
 (0)