mirror of
https://github.com/immortalwrt/immortalwrt.git
synced 2025-08-11 06:11:53 +08:00
clean up openwrt version handling, use a separate script that is executed at the beginning of the build process, fix revision checking with git
SVN-Revision: 9723
This commit is contained in:
26
scripts/getver.sh
Executable file
26
scripts/getver.sh
Executable file
@ -0,0 +1,26 @@
|
||||
#!/usr/bin/env bash
|
||||
export LANG=C
|
||||
[ -n "$TOPDIR" ] && cd $TOPDIR
|
||||
|
||||
try_version() {
|
||||
[ -f version ] || return 1
|
||||
REV="$(cat version)"
|
||||
[ -n "$REV" ]
|
||||
}
|
||||
|
||||
try_svn() {
|
||||
[ -d .svn ] || return 1
|
||||
REV="$(svn info | awk '/^Revision:/ { print $2 }')"
|
||||
REV="${REV:+r$REV}"
|
||||
[ -n "$REV" ]
|
||||
}
|
||||
|
||||
try_git() {
|
||||
[ -d .git ] || return 1
|
||||
REV="$(git-log | grep -m 1 git-svn-id | awk '{ gsub(/.*@/, "", $2); print $2 }')"
|
||||
REV="${REV:+r$REV}"
|
||||
[ -n "$REV" ]
|
||||
}
|
||||
|
||||
try_version || try_svn || try_git || REV="unknown"
|
||||
echo "$REV"
|
Reference in New Issue
Block a user