From b83650842a7f799762d50d827d6390c28956cc99 Mon Sep 17 00:00:00 2001 From: Patrick Lewis Date: Wed, 18 Nov 2020 09:03:49 -0800 Subject: [PATCH] fix(Core/bin): Add quotes to pwd in docker build scripts (#3701) --- bin/acore-docker-build | 6 +++--- bin/acore-docker-build-no-scripts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bin/acore-docker-build b/bin/acore-docker-build index 6a32b0283..5ec93feaf 100755 --- a/bin/acore-docker-build +++ b/bin/acore-docker-build @@ -3,7 +3,7 @@ docker build -t acbuild -f docker/build/Dockerfile . docker run \ - -v /$(pwd)/docker/build/cache:/azerothcore/build \ - -v /$(pwd)/docker/worldserver/bin:/binworldserver \ - -v /$(pwd)/docker/authserver/bin:/binauthserver \ + -v /"$(pwd)"/docker/build/cache:/azerothcore/build \ + -v /"$(pwd)"/docker/worldserver/bin:/binworldserver \ + -v /"$(pwd)"/docker/authserver/bin:/binauthserver \ acbuild diff --git a/bin/acore-docker-build-no-scripts b/bin/acore-docker-build-no-scripts index f784a8504..a0c80a5e3 100755 --- a/bin/acore-docker-build-no-scripts +++ b/bin/acore-docker-build-no-scripts @@ -3,7 +3,7 @@ docker build --build-arg ENABLE_SCRIPTS=0 -t acbuild -f docker/build/Dockerfile . docker run \ - -v /$(pwd)/docker/build/cache:/azerothcore/build \ - -v /$(pwd)/docker/worldserver/bin:/binworldserver \ - -v /$(pwd)/docker/authserver/bin:/binauthserver \ + -v /"$(pwd)"/docker/build/cache:/azerothcore/build \ + -v /"$(pwd)"/docker/worldserver/bin:/binworldserver \ + -v /"$(pwd)"/docker/authserver/bin:/binauthserver \ acbuild