some fixes to bash config files

This commit is contained in:
Yehonal
2016-07-28 16:39:19 +02:00
committed by Yehonal
parent 4da34f630f
commit 765fad6133
4 changed files with 7 additions and 3 deletions

2
.gitignore vendored
View File

@@ -2,8 +2,6 @@
# AzerothCore # AzerothCore
# #
*/compiler/config.sh
conf/* conf/*
!conf/*.dist !conf/*.dist
modules/* modules/*

2
bin/compiler/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
config.sh

View File

@@ -4,6 +4,10 @@ source "$CURRENT_PATH/../../bash_shared/includes.sh"
AZTH_PATH_COMPILER="$AZTH_PATH_BIN/compiler" AZTH_PATH_COMPILER="$AZTH_PATH_BIN/compiler"
if [ -f "$AZTH_PATH_COMPILER/config.sh" ]; then
source "$AZTH_PATH_COMPILER/config.sh" # should overwrite previous
fi
function azth_on_after_build() { function azth_on_after_build() {
# move the run engine # move the run engine
cp -rvf "$AZTH_PATH_BIN/runners/"* "$INSTALL_PATH/bin/" cp -rvf "$AZTH_PATH_BIN/runners/"* "$INSTALL_PATH/bin/"

View File

@@ -56,7 +56,7 @@ export GDB_ENABLED=0
export GDB="" export GDB=""
# directory where binary are stored # directory where binary are stored
exoirt BINPATH="" export BINPATH=""
### Put here the pid you configured on your worldserver.conf file ### ### Put here the pid you configured on your worldserver.conf file ###
export SERVERPID="" export SERVERPID=""