diff options
author | Yehonal <yehonal.azeroth@gmail.com> | 2017-10-13 14:37:37 +0200 |
---|---|---|
committer | Yehonal <yehonal.azeroth@gmail.com> | 2017-10-13 14:37:37 +0200 |
commit | bbc9a21e94f53cc1e9916db4b8ac6a0ee600da3a (patch) | |
tree | a3e49733c0ebf93803d0bddf3f1de655a32aa42d /bin | |
parent | f06f32849f1e2c72dc73287c73361174c07ed29e (diff) |
Bash: fixing scripts after directory rework
Diffstat (limited to 'bin')
-rw-r--r-- | bin/acore | 3 | ||||
-rw-r--r-- | bin/acore-compiler | 3 | ||||
-rw-r--r-- | bin/acore-db-asm | 3 | ||||
-rw-r--r-- | bin/acore-db-export | 3 | ||||
-rw-r--r-- | bin/acore-db-pendings | 3 | ||||
-rw-r--r-- | bin/acore-installer | 3 |
6 files changed, 18 insertions, 0 deletions
diff --git a/bin/acore b/bin/acore new file mode 100644 index 0000000000..a9c10efb22 --- /dev/null +++ b/bin/acore @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +source ./acore-installer
\ No newline at end of file diff --git a/bin/acore-compiler b/bin/acore-compiler new file mode 100644 index 0000000000..aa356deede --- /dev/null +++ b/bin/acore-compiler @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +bash ../apps/compiler/compiler.sh
\ No newline at end of file diff --git a/bin/acore-db-asm b/bin/acore-db-asm new file mode 100644 index 0000000000..7cc11c8ef8 --- /dev/null +++ b/bin/acore-db-asm @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +bash ../apps/db_assembler/db_assembler.sh
\ No newline at end of file diff --git a/bin/acore-db-export b/bin/acore-db-export new file mode 100644 index 0000000000..9a1f154586 --- /dev/null +++ b/bin/acore-db-export @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +bash ../apps/db_exporter/db_exporter.sh
\ No newline at end of file diff --git a/bin/acore-db-pendings b/bin/acore-db-pendings new file mode 100644 index 0000000000..569d161c63 --- /dev/null +++ b/bin/acore-db-pendings @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +bash ../apps/db_pendings/import.sh
\ No newline at end of file diff --git a/bin/acore-installer b/bin/acore-installer new file mode 100644 index 0000000000..c61d00458e --- /dev/null +++ b/bin/acore-installer @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +bash ../apps/installer/main.sh
\ No newline at end of file |