diff options
author | Yehonal <yehonal.azeroth@gmail.com> | 2017-09-26 12:53:46 +0200 |
---|---|---|
committer | Yehonal <yehonal.azeroth@gmail.com> | 2017-09-26 12:53:46 +0200 |
commit | eb78254579e07a3da84e984af1917846dbb2d46c (patch) | |
tree | c4007f64c0d4dc3912aec544a63157760b603b3c /bin/compiler/includes/includes.sh | |
parent | c85b1b591e7a3fde24c1ed7e4655adc54c844bfb (diff) |
Bash: Various improvement for compiler and db_assembler
Now db_assembler also creates the users specified in conf.sh files if not exists
+ Simplified some paths for compilation
Diffstat (limited to 'bin/compiler/includes/includes.sh')
-rw-r--r-- | bin/compiler/includes/includes.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/compiler/includes/includes.sh b/bin/compiler/includes/includes.sh index 4383caf84b..ffde93a73e 100644 --- a/bin/compiler/includes/includes.sh +++ b/bin/compiler/includes/includes.sh @@ -10,8 +10,7 @@ fi function ac_on_after_build() { # move the run engine - mkdir -p "$INSTALL_PATH/bin/" - cp -rvf "$AC_PATH_MODULES/acore/startup-scripts/"* "$INSTALL_PATH/bin/" + cp -rvf "$AC_PATH_MODULES/acore/startup-scripts/"* "$BINPATH" } registerHooks "ON_AFTER_BUILD" ac_on_after_build |