Skip to content

Commit

Permalink
omit --overwrite in unpack script
Browse files Browse the repository at this point in the history
  • Loading branch information
Ptival committed Jan 28, 2022
1 parent e03320c commit 53223bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/unpack_benchmarks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ unlzma_mv_untar () {
fi
TARVER=`tar --version | head -n 1`
if [[ "$TARVER" =~ "tar (GNU tar)" ]]; then
tar --overwrite -xf $TAR_FILE
tar -xf $TAR_FILE
elif [[ "$TARVER" =~ "bsdtar" ]]; then
tar -xkf $TAR_FILE
else
Expand Down

0 comments on commit 53223bf

Please sign in to comment.