X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=touch-all;h=3c2b213864d43607afab396d30480aa44e4e1c41;hb=179f0bf901bed2b9138e569c00f270a65cc5d8e6;hp=d1035e02163136d85e7e5554c2e192d71e8844a7;hpb=79c956164708bb1482ceb863a6ef26a8fe12905c;p=git-scripts.git diff --git a/touch-all b/touch-all index d1035e0..3c2b213 100755 --- 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