Skip to content

Commit 0712364

Browse files
authored
Make booster-analysis script work for *tar again (#3915)
The previous change introduced an `-or` which requires repeating the `-print0`.
1 parent 1c85ef0 commit 0712364

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/booster-analysis.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ run_tarball(){
4848
export -f run_tarball
4949
export SCRIPT_DIR
5050

51-
find $BUG_REPORT_DIR -name \*.tar -or -name \*.tar.gz -print0 | xargs -0 -t -I {} -P $PARALLEL bash -c 'run_tarball "$@"' $(basename {}) {}
51+
find $BUG_REPORT_DIR -name \*.tar -print0 -or -name \*.tar.gz -print0 | xargs -0 -t -I {} -P $PARALLEL bash -c 'run_tarball "$@"' $(basename {}) {}
5252

5353
cd $LOG_DIR
5454

0 commit comments

Comments
 (0)