mirror of
https://github.com/on4kjm/FLEcli.git
synced 2025-01-18 13:01:09 +01:00
Fix docker script to work with current directory containing spaces (#56)
This commit is contained in:
parent
220f9b8109
commit
2e1313ae7b
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue