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