diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2014-12-23 19:42:40 -0500 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2014-12-23 19:43:27 -0500 |
commit | 566c6cb8a2a277d9c5e4897ad02c5bb15786523c (patch) | |
tree | 8aed03b36b57217ba0dbfd23a0557cf6d4b387a3 /contrib/gitian-descriptors/gitian-win.yml | |
parent | 4312c8fc1892fd01a59cbccffffbb5082e36b695 (diff) |
gitian: attempt to fix tarball determinisim
Diffstat (limited to 'contrib/gitian-descriptors/gitian-win.yml')
-rw-r--r-- | contrib/gitian-descriptors/gitian-win.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gitian-descriptors/gitian-win.yml b/contrib/gitian-descriptors/gitian-win.yml index 97c823cde6..4baa08c88d 100644 --- a/contrib/gitian-descriptors/gitian-win.yml +++ b/contrib/gitian-descriptors/gitian-win.yml @@ -83,7 +83,7 @@ script: | mkdir -p temp pushd temp tar xf ../$SOURCEDIST - find bitcoin-* | sort | tar --no-recursion -c -T - | gzip -9n > ../$SOURCEDIST + find bitcoin-* | sort | tar --no-recursion --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 -c -T - | gzip -9n > ../$SOURCEDIST popd ORIGPATH="$PATH" |