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 feb83ba commit e470398Copy full SHA for e470398
release.sh
@@ -255,6 +255,12 @@ if [ -n "$signing_id" ]; then
255
# the easiest way to check the validity of the tarball from git is to unzip
256
# it and compare it with our own idea of what the tar should look like.
257
258
+ # This uses git archive which seems to be what github uses. Specifically,
259
+ # the header fields are set in the same way: same file mode, uid & gid
260
+ # both zero and mtime set to the timestamp of the commit that the tag
261
+ # references. Also note that this puts the commit into the tar headers
262
+ # and can be extracted with gunzip -c foo.tar.gz | git get-tar-commit-id
263
+
264
# the name of the sig file we want to create
265
source_sigfile="${tag}-src.tar.gz.asc"
266
0 commit comments