summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2017-01-10 08:39:36 -0700
committerSean Whitton <spwhitton@spwhitton.name>2017-01-10 08:40:12 -0700
commit43afe3ee9234a28bdbb9e64e80c8877954e9cac1 (patch)
treefc0a1698671c469be84d38d0c31294a52a3d50e4 /lib
parent70bc90c9a50b2bbc3e7e2a4843c05fe524bda51b (diff)
escape a bracket in regexp
Diffstat (limited to 'lib')
-rw-r--r--lib/DhMakeELPA/Command/make.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/DhMakeELPA/Command/make.pm b/lib/DhMakeELPA/Command/make.pm
index fd75211..5f23b23 100644
--- a/lib/DhMakeELPA/Command/make.pm
+++ b/lib/DhMakeELPA/Command/make.pm
@@ -70,7 +70,7 @@ sub create_control {
# ERT
File::Find::Rule ->grep( "ert-deftest" ),
# Buttercup
- File::Find::Rule ->grep( "(describe \"" )
+ File::Find::Rule ->grep( "\\(describe \"" )
);
$src->Testsuite("autopkgtest-pkg-elpa") if ( $rule->in('.') );