20 lines
514 B
Bash
20 lines
514 B
Bash
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
# Directory to look for bootstrap executables in
|
|
BOOTSTRAP_D="${BASH_SOURCE[0]}.d"
|
|
|
|
if [[ ! -d "$BOOTSTRAP_D" ]]; then
|
|
echo "Error: bootstrap directory '$BOOTSTRAP_D' not found" >&2
|
|
exit 1
|
|
fi
|
|
|
|
find "$BOOTSTRAP_D" -type f | sort | while IFS= read -r bootstrap; do
|
|
if [[ -x "$bootstrap" && ! "$bootstrap" =~ "##" && ! "$bootstrap" =~ "~$" ]]; then
|
|
if ! "$bootstrap"; then
|
|
echo "Error: bootstrap '$bootstrap' failed" >&2
|
|
exit 1
|
|
fi
|
|
fi
|
|
done
|