Skip to content

Commit

Permalink
guix: Zip needs the recursive flag
Browse files Browse the repository at this point in the history
The Zip for codesigned MacOS distribution needs to have `-r` so that it
recursively includes everything. Otherwise it just has empty
directories.
  • Loading branch information
achow101 committed Oct 30, 2023
1 parent 7d6c646 commit a8690ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/guix/libexec/codesign.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ mkdir -p "$DISTSRC"
signapple apply dist/Bitcoin-Qt.app codesignatures/osx/dist

# Make a .zip from dist/
zip "${OUTDIR}/${DISTNAME}-${HOST}.zip" dist/*
zip -r "${OUTDIR}/${DISTNAME}-${HOST}.zip" dist/*
;;
*)
exit 1
Expand Down

0 comments on commit a8690ff

Please sign in to comment.