dockcross: Do not mount SSH_DIR with MSYS

The mount directory is not correct in this environment.
This commit is contained in:
Matt McCormick 2019-03-05 17:43:03 -05:00
parent 043e993fd9
commit 17ecb746ec
No known key found for this signature in database
GPG Key ID: 45DA982347954FA5

View File

@ -208,7 +208,7 @@ if [ -z "$SSH_DIR" ]; then
fi
HOST_VOLUMES=
if [ -e "$SSH_DIR" ]; then
if [ -e "$SSH_DIR" -a -z "$MSYS"]; then
HOST_VOLUMES+="-v $SSH_DIR:/home/$(id -un)/.ssh"
fi