Skip to content

Commit

Permalink
Merge pull request #90 from AdamMajer/master
Browse files Browse the repository at this point in the history
No need to compress buildtime generated tarballs
  • Loading branch information
adrianschroeter committed Mar 9, 2021
2 parents 4816aee + fb282ed commit 593e93e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 20-files-present-and-referenced
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ check_tracked()
if test -f "$DESTINATIONDIR/$file"; then
return 0
fi
if test -f "$DESTINATIONDIR/${file/\.tar\.*/}.obscpio"; then
if test -f "$DESTINATIONDIR/${file/\.tar*/}.obscpio"; then
# assume it will generated on builtime based of the archive
return 0
fi
Expand All @@ -144,7 +144,7 @@ check_tracked()
return 1
fi
if ! test -f "$DIR_TO_CHECK/$file"; then
if test -f "$DIR_TO_CHECK/${file/\.tar\.*/}.obscpio"; then
if test -f "$DIR_TO_CHECK/${file/\.tar*/}.obscpio"; then
# assume it will generated on builtime based of the archive
return 0
fi
Expand Down

0 comments on commit 593e93e

Please sign in to comment.