summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2010-11-09 19:58:17 +0100
committerDavid Sommerseth <dazo@users.sourceforge.net>2010-11-09 19:58:17 +0100
commit78c2d44e52aeaaf3de417faa579e39b86083da0a (patch)
tree2c67dbc5f0d6ceea38669222e61ad64499ac0abb
parent3a591ebbd449fbf45cbefa461491814b4fbf7c35 (diff)
downloadeurephia-78c2d44e52aeaaf3de417faa579e39b86083da0a.tar.gz
eurephia-78c2d44e52aeaaf3de417faa579e39b86083da0a.tar.xz
eurephia-78c2d44e52aeaaf3de417faa579e39b86083da0a.zip
Fixed a last-minute typo on the reg-exp.
Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
-rwxr-xr-xeurephiadm/mk_buildinfo.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/eurephiadm/mk_buildinfo.sh b/eurephiadm/mk_buildinfo.sh
index 436bf81..0b6e36e 100755
--- a/eurephiadm/mk_buildinfo.sh
+++ b/eurephiadm/mk_buildinfo.sh
@@ -36,7 +36,7 @@ if [[ $? = 0 ]]; then
curdir=`pwd`
srcroot="`dirname $gitdir`"
cd $srcroot
- modfiles="`git status -s | awk '/(|.)[ ADM\?]([ ADM\?])^/{ printf " %s\\\n", $0 }'`"
+ modfiles="`git status -s | awk '/^[ ADM\?]([ ADM\?])/{ printf " %s\\\n", $0 }'`"
[[ -z ${modfiles} ]] && state=0 || state=1
cd $curdir
else