From 1433e5580757ef140bc64bcc5a904fd0ab9401ed Mon Sep 17 00:00:00 2001 From: Louie S Date: Fri, 4 Nov 2022 15:16:19 -0700 Subject: Replaced all instances of 'mkdir' with 'mkdir -p'; Fixed broken title pattern --- src/index.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/index.rb b/src/index.rb index a52e04c..9c66c81 100755 --- a/src/index.rb +++ b/src/index.rb @@ -9,7 +9,7 @@ INSERT_SQL = %Q[ INSERT INTO searchIndex(name, type, path) VALUES ('%s','%s','%s'); ] -PATTERN = %r[GNU automake: (.+)] +PATTERN = %r[(.*)\(automake\)(.*)] def quote(s) s.gsub(/&/, '&').gsub(/'/, "\\'") -- cgit