diff options
author | http://davrieb.livejournal.com/ <http://davrieb.livejournal.com/@web> | 2009-09-19 01:49:16 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2009-09-19 01:49:16 -0400 |
commit | f8bc52eea3b39a989a7dd8ab2b1746266d208d71 (patch) | |
tree | 196aecce687936d71b4dd9260ae443d0b6baf603 /doc/forum | |
parent | 6c4a2a88a871af5ac42cd80aa48684b114849e3d (diff) |
fix a typo and remove commneted out ctime line
Diffstat (limited to 'doc/forum')
-rw-r--r-- | doc/forum/How_does_ikiwiki_remember_times__63__.mdwn | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/forum/How_does_ikiwiki_remember_times__63__.mdwn b/doc/forum/How_does_ikiwiki_remember_times__63__.mdwn index cb14df77f..9685a6859 100644 --- a/doc/forum/How_does_ikiwiki_remember_times__63__.mdwn +++ b/doc/forum/How_does_ikiwiki_remember_times__63__.mdwn @@ -89,7 +89,7 @@ Do I have it right? >>>>> -- [[Jon]] > A quick workaround for me to get modification times right is the following -> little zsh script, which unfortynately only works for git: +> little zsh script, which unfortunately only works for git: #!/usr/bin/env zsh @@ -97,7 +97,6 @@ Do I have it right? for FILE in **/*(.); do TIMES="`git log --follow --pretty=format:%ai $FILE`" - #CTIME="`echo $TIMES | tail -n1`" MTIME="`echo $TIMES | head -n1`" echo touch -m -d "$MTIME" $FILE |