Fix docker script to work with current directory containing spaces (#56)

pull/60/head
Jean-Marc MEESSEN 4 years ago committed by GitHub
parent 220f9b8109
commit 2e1313ae7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,4 +1,4 @@
#!/bin/bash
CURRENT_UID=$(id -u):$(id -g)
docker run --rm -t --user ${CURRENT_UID} -v $(pwd):/FLEcli_data on4kjm/flecli:latest "$@"
docker run --rm -t --user ${CURRENT_UID} -v "$(pwd)":/FLEcli_data on4kjm/flecli:latest "$@"

Loading…
Cancel
Save