From 9c96e5bf36600582c972523f8aade926c4f44be8 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 29 Dec 2014 15:10:37 +0100 Subject: Don't pull ffmpeg -dev versions if stable release is selected FFmpeg now has tags like n2.6-dev, which we must exclude. --- update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update b/update index ba7da69..e5e3395 100755 --- a/update +++ b/update @@ -45,7 +45,7 @@ do_releasetag() { ( cd "$1" - version=`git tag | grep -v rc | versort_with_prefix "$2" | tail -n 1` + version=`git tag | grep -v rc | grep -v dev | versort_with_prefix "$2" | tail -n 1` git checkout --detach refs/tags/"$version" ) } -- cgit v1.2.3