fix(Core/bin): Add quotes to pwd in docker build scripts (#3701)

This commit is contained in:
Patrick Lewis
2020-11-18 09:03:49 -08:00
committed by GitHub
parent 973dcbf47c
commit b83650842a
2 changed files with 6 additions and 6 deletions

View File

@@ -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

View File

@@ -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