Files
azerothcore-wotlk-pbot/apps/docker/docker-build-dev.sh
Patrick Lewis 635c79f141 fix(DOCKER): remove docker db import using bash (#12773)
* fix(DOCKER): remove docker db import using bash

* remove db-import command
2022-08-18 14:53:25 -04:00

15 lines
380 B
Bash

#!/usr/bin/env bash
CUR_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source "$CUR_PATH/docker-build-prod.sh"
echo "Fixing EOL..."
# using -n (new file mode) should also fix the issue
# when the file is created with the default acore user but you
# set a different user into the docker configurations
for file in "env/dist/etc/"*
do
dos2unix -n $file $file
done