Skip to content

Commit

Permalink
Bug fix: On Linux, error when extracting from tar file (issue #23)
Browse files Browse the repository at this point in the history
- Improved fix for cross-platform compatibility
  • Loading branch information
aecreations committed Oct 4, 2024
1 parent fb9889e commit 7e6a7f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/make-linux-dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ tarFilename="sync-clippings-${appVer}-setup.tar"
checksumFile="sync-clippings-${appVer}-setup.tar.gz.sha256sum"

mv $srcFilename $distFilename
xattr -d com.apple.quarantine $distFilename
[[ $(uname -s) = "Darwin" ]] && xattr -d com.apple.quarantine $distFilename
tar -cf $tarFilename $distFilename
gzip $tarFilename
shasum --algorithm=256 ${tarFilename}.gz > $checksumFile
Expand Down

0 comments on commit 7e6a7f4

Please sign in to comment.