We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 122a61f commit c501a0dCopy full SHA for c501a0d
contrib/guix/libexec/codesign.sh
@@ -79,7 +79,11 @@ mkdir -p "$DISTSRC"
79
signapple apply dist/Dash-Qt.app codesignatures/osx/dist
80
81
# Make a .zip from dist/
82
- zip "${OUTDIR}/${DISTNAME}-${HOST}.zip" dist/*
+ cd dist/
83
+ find . -print0 \
84
+ | xargs -0r touch --no-dereference --date="@${SOURCE_DATE_EPOCH}"
85
+ find . | sort \
86
+ | zip -X@ "${OUTDIR}/${DISTNAME}-${HOST}.zip"
87
;;
88
*)
89
exit 1
0 commit comments