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 | |
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')
-rwxr-xr-x | bin/acore | 4 | ||||
-rwxr-xr-x | bin/acore-compiler | 4 | ||||
-rwxr-xr-x | bin/acore-db-asm | 4 | ||||
-rwxr-xr-x | bin/acore-db-export | 4 | ||||
-rwxr-xr-x | bin/acore-db-pendings | 4 | ||||
-rwxr-xr-x | bin/acore-installer | 4 |
6 files changed, 18 insertions, 6 deletions
@@ -1,3 +1,5 @@ #!/usr/bin/env bash -source ./acore-installer
\ No newline at end of file +CUR_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" + +source "$CUR_PATH/acore-installer"
\ No newline at end of file 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" diff --git a/bin/acore-db-asm b/bin/acore-db-asm index 7cc11c8ef8..962a70b233 100755 --- a/bin/acore-db-asm +++ b/bin/acore-db-asm @@ -1,3 +1,5 @@ #!/usr/bin/env bash -bash ../apps/db_assembler/db_assembler.sh
\ No newline at end of file +CUR_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" + +source "$CUR_PATH/../apps/db_assembler/db_assembler.sh" diff --git a/bin/acore-db-export b/bin/acore-db-export index 9a1f154586..11b8d6cba0 100755 --- a/bin/acore-db-export +++ b/bin/acore-db-export @@ -1,3 +1,5 @@ #!/usr/bin/env bash -bash ../apps/db_exporter/db_exporter.sh
\ No newline at end of file +CUR_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" + +source "$CUR_PATH/../apps/db_exporter/db_exporter.sh" diff --git a/bin/acore-db-pendings b/bin/acore-db-pendings index 569d161c63..6f8d62f9e6 100755 --- a/bin/acore-db-pendings +++ b/bin/acore-db-pendings @@ -1,3 +1,5 @@ #!/usr/bin/env bash -bash ../apps/db_pendings/import.sh
\ No newline at end of file +CUR_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" + +source "$CUR_PATH/../apps/db_pendings/import.sh" diff --git a/bin/acore-installer b/bin/acore-installer index c61d00458e..ef68e06150 100755 --- a/bin/acore-installer +++ b/bin/acore-installer @@ -1,3 +1,5 @@ #!/usr/bin/env bash -bash ../apps/installer/main.sh
\ No newline at end of file +CUR_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" + +source "$CUR_PATH/../apps/installer/main.sh" |