5c9a68281a
Also limit parallel execution of automation commands so they don't break each other randomly.
5 lines
89 B
Bash
5 lines
89 B
Bash
for file in ${SCRIPTROOT}/scripts/*.sh; do
|
|
[ -e "${file}" ] || continue
|
|
. ${file}
|
|
done
|