Skip to content

Commit

Permalink
Undo a change
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst committed May 30, 2024
1 parent 9e3e289 commit f9d36bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion framework/test/test_fix_test_suite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ _create_tar_bz2_file() {
pushd . > /dev/null 2>&1 || (echo "cannot pushd ." && exit 1)
cd "$HERE/resources/input" || (echo "cannot cd to $HERE/resources/input" && exit 1)
tar_bz2_file="$suites_dir/$pid-$bid-test.0.tar.bz2"
tar -jcvf "$tar_bz2_file" "$input_files" || return 1
# shellcheck disable=SC2086 # $input_files contains multiple files
tar -jcvf "$tar_bz2_file" $input_files || return 1
popd > /dev/null 2>&1 || (echo "cannot popd" && exit 1)

return 0
Expand Down

0 comments on commit f9d36bc

Please sign in to comment.