]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/planet/files/default/replication-bin/replicate-changesets
Merge remote-tracking branch 'github/pull/726'
[chef.git] / cookbooks / planet / files / default / replication-bin / replicate-changesets
index 62e0862455f9cf67434c1f58d924a6c49f694d31..cee87bd26fc5bb5af38ef9fd61228da2221e8da4 100755 (executable)
@@ -127,7 +127,7 @@ end
 # sync a directory to guarantee it's on disk. have to recurse to the root
 # to guarantee sync for newly created directories.
 def fdirsync(d)
-  while d != "/"
+  while d != "/" && d != "."
     fsync(d)
     d = File.dirname(d)
   end