commit 86209e81b9ecf821e29666f1580bfb4c6b2d3098
parent 357ff8e833480c94f217a2deb5afd22a0a45330a
Author: ThomasV <thomasv@electrum.org>
Date: Thu, 28 Jun 2018 19:55:26 +0200
win builds: call 'git describe' before we add unstaged files to the repo
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/contrib/build-wine/build-electrum-git.sh b/contrib/build-wine/build-electrum-git.sh
@@ -41,6 +41,9 @@ fi
git submodule init
git submodule update
+VERSION=`git describe --tags --dirty`
+echo "Last commit: $VERSION"
+
pushd ./contrib/deterministic-build/electrum-locale
for i in ./locale/*; do
dir=$i/LC_MESSAGES
@@ -49,8 +52,6 @@ for i in ./locale/*; do
done
popd
-VERSION=`git describe --tags --dirty`
-echo "Last commit: $VERSION"
find -exec touch -d '2000-11-11T11:11:11+00:00' {} +
popd