Merge pull request #312 from er1c/script-fix

Add missing space in shell if [ ... ]
This commit is contained in:
Matt McCormick 2019-03-10 14:21:52 -04:00 committed by GitHub
commit 7ff84badf9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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