www-apps/cgit: Add missing escape characters in postinst message.

Signed-off-by: Jesus P Rey <gentoo@chuso.net>
Closes: https://bugs.gentoo.org/700402
Closes: https://github.com/gentoo/gentoo/pull/17649
Signed-off-by: Matt Turner <mattst88@gentoo.org>
This commit is contained in:
Jesus P Rey (Chuso)
2020-09-24 11:21:18 +02:00
committed by Matt Turner
parent 7c2993ec97
commit 25d173ae90

View File

@@ -29,9 +29,9 @@ rewrite rules to your
<snip>
RewriteEngine On
# Redirect all non-existant urls to cgit
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.* /cgi-bin/cgit.cgi/$0 [L,PT]
RewriteCond %%{REQUEST_FILENAME} !-f
RewriteCond %%{REQUEST_FILENAME} !-d
RewriteRule ^.* /cgi-bin/cgit.cgi/\$0 [L,PT]
# Redirect the empty url to cgit
RewriteRule ^$ /cgi-bin/cgit.cgi/ [L,PT]