mirror of
https://github.com/autistic-symposium/backend-and-orchestration-toolkit.git
synced 2025-06-08 23:13:08 -04:00
13 lines
279 B
Bash
Executable file
13 lines
279 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -o errexit # always exit on error
|
|
set -o errtrace # trap errors in functions as well
|
|
set -o pipefail # don't ignore exit codes when piping output
|
|
|
|
|
|
IFS=$'\n\t'
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")/.."
|
|
|
|
source "$1"
|
|
make --makefile=./scripts/deploy.mk all
|