]> git.phdru.name Git - git-scripts.git/commitdiff
Quote filename
authorOleg Broytman <phd@phdru.name>
Thu, 26 Mar 2015 18:20:21 +0000 (21:20 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 26 Mar 2015 18:20:21 +0000 (21:20 +0300)
touch-all

index d1035e02163136d85e7e5554c2e192d71e8844a7..3c2b213864d43607afab396d30480aa44e4e1c41 100755 (executable)
--- a/touch-all
+++ b/touch-all
@@ -4,5 +4,5 @@
 # and set the file's modification time to that date/time.
 
 git ls-tree -r --name-only HEAD | while read filename; do
-  touch --date="`git log -1 --format=\"%cD\" -- $filename`" "$filename"
+  touch --date="`git log -1 --format=\"%cD\" -- \"$filename\"`" "$filename"
 done