diff options
author | Yehonal <yehonal.azeroth@gmail.com> | 2018-07-15 22:40:49 +0200 |
---|---|---|
committer | Yehonal <yehonal.azeroth@gmail.com> | 2018-07-15 22:51:17 +0200 |
commit | 85388901cf6a69659569ad751767fd7108b25a3c (patch) | |
tree | a004b01dfd378841c2ee473023313ade212118d7 /bin/acore-compiler | |
parent | 07a451e1402cf8a7c24cf6196d541d304f5dcff2 (diff) |
Rewrite of bash system
+ Implemented new dashboard menu
+ some fixes for db_assembler
+ new module installation process with version check via json files
+ some fixes to modules installer
+ implemented simple crossplatform worldserver and authserver restarters
+ new compiler script
+ client data downloader (beta)
+ various other fixes
Diffstat (limited to 'bin/acore-compiler')
-rwxr-xr-x | bin/acore-compiler | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/acore-compiler b/bin/acore-compiler index aa356deede..ba5311a12f 100755 --- a/bin/acore-compiler +++ b/bin/acore-compiler @@ -1,3 +1,5 @@ #!/usr/bin/env bash -bash ../apps/compiler/compiler.sh
\ No newline at end of file +CUR_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" + +source "$CUR_PATH/../apps/compiler/compiler.sh" |