mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 17:19:07 +00:00
16 lines
390 B
Bash
Executable File
16 lines
390 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ "$TRAVIS_BUILD_ID" = "1" ]
|
|
then
|
|
echo "import DB"
|
|
bash ./acore.sh "db-assembler" "import-all"
|
|
|
|
if [ -s modules/mod-premium/sql/example_item_9017.sql ]
|
|
then
|
|
# if the premium module is available insert the example item or else the worldserver dry run will fail
|
|
mysql -u root world_$DB_RND_NAME <modules/mod-premium/sql/example_item_9017.sql
|
|
fi
|
|
fi
|