From 01e0f10c381caf9350ab5649e6d83af07319bde5 Mon Sep 17 00:00:00 2001 From: Mercier Pierre-Olivier Date: Sun, 15 Sep 2013 12:43:25 +0200 Subject: [PATCH] Fix unterminated quoted string --- hooks/subjects.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/subjects.pl b/hooks/subjects.pl index c9c2bab..a94380e 100755 --- a/hooks/subjects.pl +++ b/hooks/subjects.pl @@ -208,7 +208,7 @@ sub tag_project else { # Is the long tag existing - qx(git tag | egrep "^$long_tag$"); + qx(git tag | egrep "^$long_tag\$"); if ($?) { log ERROR, "Tag long correspondant introuvable : $long_tag."; }