From 5edcd857b2107cd8b78c16232dd10877513ec157 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 20 Apr 2013 15:56:28 +0100 Subject: [PATCH] update-readmes: add series version to README --- README | 2 ++ update-readmes | 10 ++++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README b/README index f0ad183..83a1b88 100644 --- a/README +++ b/README @@ -1,3 +1,5 @@ +GStreamer @SERIES_VERSION@ + WHAT IT IS ---------- diff --git a/update-readmes b/update-readmes index 4afe162..1eb9912 100755 --- a/update-readmes +++ b/update-readmes @@ -22,19 +22,21 @@ fi let m=$MINOR_VERSION%2 if test $m = 0; then - VERSION="$MAJOR_VERSION.$MINOR_VERSION.x stable series" + SERIES_VERSION="$MAJOR_VERSION.$MINOR_VERSION.x stable series" else - VERSION="$MAJOR_VERSION.$MINOR_VERSION.x development series" + SERIES_VERSION="$MAJOR_VERSION.$MINOR_VERSION.x development series" fi -#echo "$VERSION" +#echo "$SERIES_VERSION" for f in $README_FILES ; do - cp --preserve --update --verbose "common/$f" $f || { + cp --preserve "common/$f" $f || { echo "Failed to update $f" exit 1; } done +sed -i "s/@SERIES_VERSION@/$SERIES_VERSION/g" README + if test x$1 = "x--run-git-add"; then git add $README_FILES; fi -- 2.7.4