summaryrefslogtreecommitdiff
path: root/src/index.rb
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2022-11-04 15:16:19 -0700
committerLouie S <louie@example.com>2022-11-04 15:16:19 -0700
commit1433e5580757ef140bc64bcc5a904fd0ab9401ed (patch)
tree7e90239b1407bcfccdd78db1f0f735ae86ff18ec /src/index.rb
parent18db3871eace8da1cbdc6b2c15a155024254e4e5 (diff)
Replaced all instances of 'mkdir' with 'mkdir -p'; Fixed broken title pattern
Diffstat (limited to 'src/index.rb')
-rwxr-xr-xsrc/index.rb2
1 files changed, 1 insertions, 1 deletions
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[<title>GNU automake: (.+)</title>]
+PATTERN = %r[<title>(.*)\(automake\)(.*)</title>]
def quote(s)
s.gsub(/&amp;/, '&').gsub(/'/, "\\'")