diff options
-rw-r--r-- | doc/bugs/redirect.mdwn | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/doc/bugs/redirect.mdwn b/doc/bugs/redirect.mdwn index 5061a7940..521c29f9e 100644 --- a/doc/bugs/redirect.mdwn +++ b/doc/bugs/redirect.mdwn @@ -3,14 +3,10 @@ I suppose this isn't technically a bug, but whetever. I want symbolic links to be rendered as HTTP redirects. For example, if we do this, -``` -touch foo.mkdwn -ln -s foo.mkdwn bar.mkdwn -git push baz.branchable.com -``` + touch foo.mkdwn + ln -s foo.mkdwn bar.mkdwn + git push baz.branchable.com then the following command should print 302 -``` -curl -o /dev/null -s -w "%{http_code}" http://baz.thomaslevine.com/bar/ -``` + curl -o /dev/null -s -w "%{http_code}" http://baz.thomaslevine.com/bar/ |