docker-run.sh: fix quoting issues

As reported by shellcheck

Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This commit is contained in:
Marc Herbert 2020-09-15 04:27:01 +00:00 committed by Liam Girdwood
parent 4893e7018f
commit 1c6930e29f
1 changed files with 2 additions and 2 deletions

View File

@ -10,5 +10,5 @@
# To build topology: # To build topology:
# ./scripts/docker-run.sh ./scripts/build-tools.sh # ./scripts/docker-run.sh ./scripts/build-tools.sh
docker run -i -t -v `pwd`:/home/sof/work/sof.git \ docker run -i -t -v "$(pwd)":/home/sof/work/sof.git \
--user `id -u` sof $@ --user "$(id -u)" sof "$@"