config-bootstrap/tools.bash

8 lines
119 B
Bash
Raw Normal View History

2022-05-21 02:30:05 +02:00
#!/bin/bash
BASEDIR=$(cd "$(dirname "$0")" && pwd)
for file in "${BASEDIR}"/tools.d/*.bash; do
bash "${file}"
2022-05-21 02:30:05 +02:00
done