generate a true shell script
authorWolfram Schneider <wosch@indexdata.dk>
Tue, 7 Jul 2015 12:59:06 +0000 (12:59 +0000)
committerWolfram Schneider <wosch@indexdata.dk>
Tue, 7 Jul 2015 12:59:06 +0000 (12:59 +0000)
id-release

index 71a4504..5acbcfb 100755 (executable)
@@ -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