We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e30f0c6 commit cfc95aeCopy full SHA for cfc95ae
scripts.d/30_version_txt.sh
@@ -1,15 +1,8 @@
1
#!/bin/sh
2
-architecture="$1"
3
set -e
4
5
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
+version="$(git tag --sort=-creatordate | sed -n '1p')-arm64"
+
14
echo "writing version.txt: $version"
15
-echo "$version" > $ROOT/boot/version.txt
+echo "$version" > $ROOT/boot/version.txt
0 commit comments