config-bootstrap/config.bash

8 lines
120 B
Bash
Raw Normal View History

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