Skip to content

Commit

Permalink
Fix eclipse-che#4171 use fat option to allow to work on FAT filesyste…
Browse files Browse the repository at this point in the history
…ms (like Windows) (eclipse-che#4182)

Change-Id: I6ded03a2591150f6b1cfc5fa6f86eb07db8c3462
Signed-off-by: Florent BENOIT <fbenoit@codenvy.com>
  • Loading branch information
benoitf authored Feb 20, 2017
1 parent b53932d commit cd1e74f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dockerfiles/mount/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit cd1e74f

Please sign in to comment.