diff options
author | Patrick Lewis <pat@lo5t.com> | 2021-04-29 01:31:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 01:31:17 -0700 |
commit | e02d5f4ae4be07c8996981b7abfbb16c79b30a1a (patch) | |
tree | 6f5303d93e13b2f1d4d3b712a43f0f077c8f01ca /bin | |
parent | a92293c2fda4d96eb209ff46e140b7bd1f5e01bb (diff) |
fix(BASH): cp docker configs (#5536)
* fix(BASH): cp docker configs
* fix(DOCKER): typo
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/acore-docker-build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/acore-docker-build b/bin/acore-docker-build index d7cc6e244e..efe890d445 100755 --- a/bin/acore-docker-build +++ b/bin/acore-docker-build @@ -5,8 +5,8 @@ cd /azerothcore bash acore.sh compiler build echo "Generating confs..." -cp -n "env/docker/etc/worldserver.conf.dockerdist" "env/dist/etc/worldserver.conf" -cp -n "env/docker/etc/authserver.conf.dockerdist" "env/dist/etc/authserver.conf" +cp -n "env/dist/etc/worldserver.conf.dockerdist" "env/dist/etc/worldserver.conf" +cp -n "env/dist/etc/authserver.conf.dockerdist" "env/dist/etc/authserver.conf" echo "Fixing EOL..." # using -n (new file mode) should also fix the issue |