config-bootstrap/config.bash

8 lines
120 B
Bash

#!/bin/bash
BASEDIR=$(cd "$(dirname "$0")" && pwd)
for file in "${BASEDIR}"/config.d/*.bash; do
bash "${file}"
done