Merge pull request #1044 from marineam/docker

docker: fix flag parsing in docker wrapper script
This commit is contained in:
Michael Marineau 2015-01-05 15:34:51 -08:00
commit 458aaa863d
2 changed files with 1 additions and 1 deletions

View File

@ -11,8 +11,8 @@ parse_docker_args() {
# treat --flag=foo and --flag foo identically
if [[ "${flag}" == *=* ]]; then
flag="${flag%=*}"
set -- "${flag#*=}" "$@"
flag="${flag%=*}"
fi
case "${flag}" in