3af59e9423
- build__all.sh - build__common.sh (includes common_start and common_end) which simplifies pilots
18 lines
262 B
Bash
Executable file
18 lines
262 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
set -u
|
|
# DEBUG
|
|
set -x
|
|
|
|
main() {
|
|
action="${action:-deploy}"
|
|
export deployment='prod'
|
|
./build__pilot-xo9b.sh
|
|
./build__pilot-setem.sh
|
|
./build__pilot-lafede.sh
|
|
./build__pilot-pangea.sh
|
|
}
|
|
|
|
main "${@}"
|