Skip to content

Commit

Permalink
also redirect stderr to /dev/null
Browse files Browse the repository at this point in the history
bedroge committed Apr 2, 2024
1 parent 35ca33e commit 2606cd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/test-ingest-tarball.sh
Original file line number Diff line number Diff line change
@@ -86,7 +86,7 @@ tarballs_fail=(
# Run the tests that should succeed
for ((i = 0; i < ${#tarballs_success[@]}; i++)); do
t=$(create_tarball ${tarballs_success[$i]})
"${INGEST_SCRIPT}" "$t" > /dev/null
"${INGEST_SCRIPT}" "$t" >& /dev/null
if [ ! $? -eq 0 ]; then
num_tests_failed=$((num_tests_failed + 1))
else

0 comments on commit 2606cd2

Please sign in to comment.