summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesus P Rey (Chuso) <gentoo@chuso.net>2020-09-24 11:21:18 +0200
committerMatt Turner <mattst88@gentoo.org>2020-11-04 20:52:09 -0500
commit25d173ae900cb25661f28092995cee221d2f7be2 (patch)
tree43c600339feb958538dcb2ba0ddbd239ed666e86 /www-apps/cgit
parentdev-python/rope: clean up 0.16.0 (diff)
downloadgentoo-25d173ae900cb25661f28092995cee221d2f7be2.tar.gz
gentoo-25d173ae900cb25661f28092995cee221d2f7be2.tar.bz2
gentoo-25d173ae900cb25661f28092995cee221d2f7be2.zip
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>
Diffstat (limited to 'www-apps/cgit')
-rw-r--r--www-apps/cgit/files/postinstall-en.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/www-apps/cgit/files/postinstall-en.txt b/www-apps/cgit/files/postinstall-en.txt
index b164123f0196..f7c5c8cfae90 100644
--- a/www-apps/cgit/files/postinstall-en.txt
+++ b/www-apps/cgit/files/postinstall-en.txt
@@ -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]