From 16ec9e48c0f5f17e2f65e7ff48223f5db81619c4 Mon Sep 17 00:00:00 2001 From: irina Date: Mon, 16 Jun 2014 09:15:06 +0000 Subject: [PATCH] ogCopyFile (transferencia unicast-cache): copia los ficheros siempre visibles, antes estaban ocultos y al final de la transferencia hacian visibles. git-svn-id: https://opengnsys.es/svn/branches/version1.0@4302 a21b9725-9963-47de-94b9-378ad31fedc9 --- client/engine/File.lib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/engine/File.lib b/client/engine/File.lib index ef561f18..e602b64d 100755 --- a/client/engine/File.lib +++ b/client/engine/File.lib @@ -119,7 +119,7 @@ esac TARGET="$(ogGetPath "$@")" [ -n "$TARGET" ] || ogRaiseError $OG_ERR_NOTFOUND "$*" || return $? # Copiar fichero (para evitar problemas de comunicaciones las copias se hacen con rsync en vez de cp). -rsync --progress -avh "$SOURCE" "$TARGET" +rsync --progress --inplace -avh "$SOURCE" "$TARGET" }