mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2024-11-13 01:52:25 +00:00
31 lines
941 B
Bash
Executable file
31 lines
941 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Save this file as ~/.config/yadm/bootstrap and make it executable. It will
|
|
# execute all executable files (excluding templates and editor backups) in the
|
|
# ~/.config/yadm/bootstrap.d directory when run.
|
|
|
|
# Source: https://raw.githubusercontent.com/TheLocehiliosan/yadm/master/contrib/bootstrap/bootstrap-in-dir
|
|
|
|
set -e
|
|
|
|
if [[ $DEBUG != "" ]]; then
|
|
set -x
|
|
fi
|
|
|
|
# Directory to look for bootstrap executables in
|
|
BOOTSTRAP_D="${BASH_SOURCE[0]}.d"
|
|
|
|
if [[ ! -d "$BOOTSTRAP_D" ]]; then
|
|
echo "[bootstrap] Error: bootstrap directory '$BOOTSTRAP_D' not found" >&2
|
|
exit 1
|
|
fi
|
|
|
|
find -L "$BOOTSTRAP_D" -type f | sort | while IFS= read -r bootstrap; do
|
|
if [[ -x "$bootstrap" && ! "$bootstrap" =~ "##" && ! "$bootstrap" =~ "~$" ]]; then
|
|
echo "[bootstrap] running $bootstrap"
|
|
if ! "$bootstrap"; then
|
|
echo "[bootstrap] Error: bootstrap '$bootstrap' failed" >&2
|
|
exit 1
|
|
fi
|
|
fi
|
|
done
|