From cd1e74f70dc8b821ce4bd2b0a0d78e25447dcf56 Mon Sep 17 00:00:00 2001 From: Florent BENOIT Date: Mon, 20 Feb 2017 17:46:22 +0100 Subject: [PATCH] Fix #4171 use fat option to allow to work on FAT filesystems (like Windows) (#4182) Change-Id: I6ded03a2591150f6b1cfc5fa6f86eb07db8c3462 Signed-off-by: Florent BENOIT --- dockerfiles/mount/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/mount/entrypoint.sh b/dockerfiles/mount/entrypoint.sh index 8cbb1ddec31..402d88d36ab 100755 --- a/dockerfiles/mount/entrypoint.sh +++ b/dockerfiles/mount/entrypoint.sh @@ -138,10 +138,10 @@ info "INFO: (che mount): Initial sync...Please wait." local UNISON_ARGS=""; if [ $(is_verbose "$@") = true ]; then - UNISON_ARGS="-batch -auto -prefer=newer" + UNISON_ARGS="-batch -fat -auto -prefer=newer" info "using verbose mode" else - UNISON_ARGS="-silent -auto -prefer=newer -log=false > /dev/null 2>&1" + UNISON_ARGS="-silent -fat -auto -prefer=newer -log=false > /dev/null 2>&1" fi UNISON_COMMAND="unison /mntssh /mnthost ${UNISON_ARGS}"