mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 01:08:35 +00:00
12 lines
482 B
Bash
Executable File
12 lines
482 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cp src/server/worldserver/worldserver.conf.dist docker/worldserver/etc/worldserver.conf.dist
|
|
cp src/server/authserver/authserver.conf.dist docker/authserver/etc/authserver.conf.dist
|
|
|
|
cp docker/worldserver/etc/worldserver.conf.dockerdist docker/worldserver/etc/worldserver.conf
|
|
cp docker/authserver/etc/authserver.conf.dockerdist docker/authserver/etc/authserver.conf
|
|
|
|
if [ $OSTYPE = msys ]; then
|
|
dos2unix docker/worldserver/etc/* docker/authserver/etc/*
|
|
fi
|