gistfile1.txt
· 251 B · Text
Originalformat
#!/usr/bin/env bash
_APP_CORE_DIR="$(dirname "${BASH_SOURCE[0]}")"
# ============================================
# Core Bootstrap
# ============================================
source "${_APP_CORE_DIR}/context.sh"
source "${_APP_CORE_DIR}/json.sh"
| 1 | #!/usr/bin/env bash |
| 2 | |
| 3 | _APP_CORE_DIR="$(dirname "${BASH_SOURCE[0]}")" |
| 4 | |
| 5 | # ============================================ |
| 6 | # Core Bootstrap |
| 7 | # ============================================ |
| 8 | |
| 9 | source "${_APP_CORE_DIR}/context.sh" |
| 10 | source "${_APP_CORE_DIR}/json.sh" |