Skip to content

Commit cfc95ae

Browse files
authored
Update 30_version_txt.sh
1 parent e30f0c6 commit cfc95ae

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

scripts.d/30_version_txt.sh

+3-10
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,8 @@
11
#!/bin/sh
2-
architecture="$1"
32
set -e
43

54
ROOT=mnt/img_root
6-
case "$architecture" in
7-
"armhf" | "")
8-
version=$(git tag --sort=-creatordate | sed -n '1p')
9-
;;
10-
"arm64")
11-
version="$(git tag --sort=-creatordate | sed -n '1p')-$architecture"
12-
;;
13-
esac
5+
version="$(git tag --sort=-creatordate | sed -n '1p')-arm64"
6+
147
echo "writing version.txt: $version"
15-
echo "$version" > $ROOT/boot/version.txt
8+
echo "$version" > $ROOT/boot/version.txt

0 commit comments

Comments
 (0)