diff options
| author | Carl Dong <[email protected]> | 2019-10-02 11:58:52 -0400 |
|---|---|---|
| committer | Carl Dong <[email protected]> | 2019-10-08 13:39:09 -0400 |
| commit | 999a9a5f5b4165dbdcb032c8d58c0ac1085ddcd1 (patch) | |
| tree | 0ec89d8e7b445fbae45b83aa00873b25b5ca4a40 | |
| parent | gitian: Fix README inclusion in archives (diff) | |
| download | discoin-999a9a5f5b4165dbdcb032c8d58c0ac1085ddcd1.tar.xz discoin-999a9a5f5b4165dbdcb032c8d58c0ac1085ddcd1.zip | |
gitian: Smaller diff with gitian-linux.yml
| -rw-r--r-- | contrib/gitian-descriptors/gitian-win.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/contrib/gitian-descriptors/gitian-win.yml b/contrib/gitian-descriptors/gitian-win.yml index eee44cc28..59a1fae44 100644 --- a/contrib/gitian-descriptors/gitian-win.yml +++ b/contrib/gitian-descriptors/gitian-win.yml @@ -124,14 +124,11 @@ script: | make dist SOURCEDIST=`echo bitcoin-*.tar.gz` DISTNAME=`echo ${SOURCEDIST} | sed 's/.tar.*//'` - # Correct tar file order mkdir -p temp pushd temp tar -xf ../$SOURCEDIST find bitcoin-* | sort | tar --mtime="$REFERENCE_DATETIME" --no-recursion --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 -c -T - | gzip -9n > ../$SOURCEDIST - mkdir -p $OUTDIR/src - cp ../$SOURCEDIST $OUTDIR/src popd # Workaround for tarball not building with the bare tag version (prep) @@ -172,6 +169,8 @@ script: | cd ../../ rm -rf distsrc-${i} done + mkdir -p $OUTDIR/src + mv $SOURCEDIST $OUTDIR/src cp -rf contrib/windeploy $BUILD_DIR cd $BUILD_DIR/windeploy mkdir unsigned |