From c8487f0c3139deded81740f36be421b17160ecaa Mon Sep 17 00:00:00 2001 From: mat Date: Tue, 18 Nov 2014 16:26:09 +0000 Subject: Make this work with any amount of tabulations between the = and the value of PORTREVISION. Sponsored by: Absolight --- Tools/scripts/bump-revision.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Tools/scripts/bump-revision.sh') diff --git a/Tools/scripts/bump-revision.sh b/Tools/scripts/bump-revision.sh index e16fa39393f4..84562458aaae 100755 --- a/Tools/scripts/bump-revision.sh +++ b/Tools/scripts/bump-revision.sh @@ -59,7 +59,7 @@ do # 1, bail out and complain. # The proper fix is to do a stricter check that PORTREVISION # is an integer. - awk -F "\t" '/^PORTREVISION\??=/{ rplc = gsub ($2,$2+1); if (rplc != 1) { exit 1 } };{ print }' "$1/Makefile" > $tempfile \ + awk -F "\t+" '/^PORTREVISION\??=/{ rplc = gsub ($2,$2+1); if (rplc != 1) { exit 1 } };{ print }' "$1/Makefile" > $tempfile \ && { cat $tempfile > "$1/Makefile" ; printc "$1: $revision found, bumping it by 1." "green" ; } \ || printc "$1: FAILED TO BUMP PORTREVISION" red ;; -- cgit