Skip to content

Commit c156faa

Browse files
committed
Use VERSION from environment, if set
1 parent aad3d90 commit c156faa

5 files changed

Lines changed: 7 additions & 5 deletions

File tree

bin/mousegen-capes

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
VERSION=2.0.7-stanio-16-dev
2+
VERSION=${VERSION:-2.0.7-test}
33

44
cd "$(dirname "$0")/.."
55

@@ -65,6 +65,7 @@ for color in $MOUSE_COLORS; do
6565
if [ -z "$pkgName" ]; then continue; fi
6666
echo "Bibata-Mousecape-$pkgName-v$VERSION.zip"
6767
jar cMf ../Bibata-Mousecape-$pkgName-v$VERSION.zip COPYING */Bibata-[MO]*-$dirName*.cape
68+
echo "Bibata-Mousecape-Left-handed-$pkgName-v$VERSION.zip"
6869
jar cMf ../Bibata-Mousecape-Left-handed-$pkgName-v$VERSION.zip COPYING */Bibata-Left*-$dirName*.cape
6970
done
7071
echo done.

bin/mousegen-hyprland

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
VERSION=2.0.7-stanio-16-dev
2+
VERSION=${VERSION:-2.0.7-test}
33

44
cd "$(dirname "$0")/.."
55

bin/mousegen-kscalable

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/sh
2-
#VERSION=2.0.7-stanio-16-dev
32

43
cd "$(dirname "$0")/.."
54

bin/mousegen-windows

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
VERSION=2.0.7-stanio-16-dev
2+
VERSION=${VERSION:-2.0.7-test}
33

44
cd "$(dirname "$0")/.."
55

@@ -73,6 +73,7 @@ for color in $MOUSE_COLORS; do
7373
if [ -z "$pkgName" ]; then continue; fi
7474
echo "Bibata-Windows-$pkgName-v$VERSION.zip"
7575
jar cMf ../Bibata-Windows-$pkgName-v$VERSION.zip COPYING */[MO]*-$dirName* */install-Bibata-$dirName*.inf
76+
echo "Bibata-Windows-Left-handed-$pkgName-v$VERSION.zip"
7677
jar cMf ../Bibata-Windows-Left-handed-$pkgName-v$VERSION.zip COPYING */Left*-$dirName* */install-Bibata-Left*-$dirName*.inf
7778
done
7879
echo done.

bin/mousegen-xcursors

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
VERSION=2.0.7-stanio-16-dev
2+
VERSION=${VERSION:-2.0.7-test}
33

44
cd "$(dirname "$0")/.."
55

@@ -81,6 +81,7 @@ for color in $MOUSE_COLORS; do
8181
if [ -z "$pkgName" ]; then continue; fi
8282
echo "Bibata-Xcursors-$pkgName-v$VERSION.tar.xz"
8383
tar cJf ../Bibata-Xcursors-$pkgName-v$VERSION.tar.xz COPYING */Bibata-[MO]*-$dirName*
84+
echo "Bibata-Xcursors-Left-handed-$pkgName-v$VERSION.tar.xz"
8485
tar cJf ../Bibata-Xcursors-Left-handed-$pkgName-v$VERSION.tar.xz COPYING */Bibata-Left*-$dirName*
8586
done
8687
echo done.

0 commit comments

Comments
 (0)