Files
secureblue/modules/script/script.sh

15 lines
282 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"
find "$PWD" -type f -exec chmod +x {} \;
for CMD in "${RUN[@]}"; do
echo "Running command: $CMD"
eval "$CMD"
done