summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKali Kaneko (leap communications) <kali@leap.se>2018-10-11 18:57:58 +0200
committerKali Kaneko (leap communications) <kali@leap.se>2018-10-11 18:57:58 +0200
commit1e1c33231902b724128eda0b641e1d5aca3291d7 (patch)
tree623e3d401df3a4cadab2eb4b45ba661a0f98a26d
parent6b9d10e62f35d6ea51ed37365a31bedf33e226cc (diff)
[bug] fix path for the version file
the version,sh script is normally executed from the parent folder. this was only working in tests because I wasn't deleting the file in my local builds.
-rwxr-xr-xsnap/version.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/snap/version.sh b/snap/version.sh
index 92b0ab4..dc33763 100755
--- a/snap/version.sh
+++ b/snap/version.sh
@@ -1,4 +1,4 @@
#!/bin/sh
git clone https://0xacab.org/leap/bitmask-systray 2> /dev/null > /dev/null
-git -C bitmask-systray describe --tags | tee version.txt
+git -C bitmask-systray describe --tags | tee snap/version.txt
rm -rf bitmask-systray