From a6306ca601895f4386246f302500df983c9e275b Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Tue, 7 Jul 2015 12:59:06 +0000 Subject: [PATCH] generate a true shell script --- id-release | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/id-release b/id-release index 71a4504..5acbcfb 100755 --- a/id-release +++ b/id-release @@ -22,14 +22,14 @@ case $1 in * ) usage ;; esac -echo "See also https://twiki.indexdata.com/twiki/bin/view/ID/AdamsReleaseProcedure" +echo "# See also https://twiki.indexdata.com/twiki/bin/view/ID/AdamsReleaseProcedure" echo "" -echo "Did you updated the news log file?" +echo "# Did you updated the news log file?" for file in Changes News NEWS do if [ -e $file ]; then - ls -l $file + echo "# $(ls -l $file)" fi done echo "" @@ -46,7 +46,7 @@ else perl=false fi -if [ `ls |egrep '\.spec$' | wc -l` -eq 0 ]; then +if [ `ls | egrep '\.spec$' | wc -l` -eq 0 ]; then usage "No *.spec file found" else spec=`ls |egrep '\.spec$' | head -1` @@ -60,12 +60,12 @@ fi perl -i.bak -npe "s,VERSION=.*,VERSION=$version," IDMETA if $java; then - echo "set maven version to $version" + echo "# set maven version to $version" mvn versions:set -DnewVersion=$version > mvn-versions.log fi if $perl; then - echo "check perl version numbers" + echo "# check perl version numbers" find . -name '*.pm' -print0 | xargs -0 egrep -H '\$VERSION.*=.*[0-9]' | egrep -v '^\./deb-src/' fi -- 1.7.10.4