mirror of https://github.com/hak5/openwrt.git
scripts/getver.sh: simplify revision calculation
Use git rev-list --count to get the revision number. Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>lede-17.01
parent
c729fe0269
commit
575be9d182
|
@ -11,7 +11,7 @@ try_version() {
|
||||||
|
|
||||||
try_git() {
|
try_git() {
|
||||||
git rev-parse --git-dir >/dev/null 2>&1 || return 1
|
git rev-parse --git-dir >/dev/null 2>&1 || return 1
|
||||||
REV="$(git describe --match reboot | sed "s/reboot-\([0-9]*\)-.*/\1/g")"
|
REV="$(git rev-list reboot..HEAD --count)"
|
||||||
REV="${REV:+r$REV}"
|
REV="${REV:+r$REV}"
|
||||||
[ -n "$REV" ]
|
[ -n "$REV" ]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue