mirror of
https://github.com/optim-enterprises-bv/secureblue.git
synced 2025-11-04 20:38:11 +00:00
15 lines
238 B
Bash
15 lines
238 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Tell build process to exit if there are any errors.
|
|
set -oue pipefail
|
|
|
|
get_yaml_array RUN '.run[]' "$1"
|
|
|
|
cd "$CONFIG_DIRECTORY/scripts"
|
|
|
|
pwd
|
|
|
|
for CMD in "${RUN[@]}"; do
|
|
echo "Running command: $CMD"
|
|
$CMD
|
|
done |