add homebrew bootstrap
This commit is contained in:
parent
4ac41e7765
commit
c21ab8e458
2 changed files with 42 additions and 0 deletions
24
.config/yadm/bootstrap
Executable file
24
.config/yadm/bootstrap
Executable file
|
@ -0,0 +1,24 @@
|
||||||
|
#!/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.
|
||||||
|
|
||||||
|
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 -L "$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
|
18
.config/yadm/bootstrap.d/001_homebrew
Executable file
18
.config/yadm/bootstrap.d/001_homebrew
Executable file
|
@ -0,0 +1,18 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
system_type=$(uname -s)
|
||||||
|
|
||||||
|
if [ "$system_type" = "Darwin" ]; then
|
||||||
|
|
||||||
|
# install homebrew if it's missing
|
||||||
|
if ! command -v brew >/dev/null 2>&1; then
|
||||||
|
echo "Installing homebrew"
|
||||||
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f "$HOME/.Brewfile" ]; then
|
||||||
|
echo "Updating homebrew bundle"
|
||||||
|
brew bundle --global
|
||||||
|
fi
|
||||||
|
|
||||||
|
fi
|
Loading…
Reference in a new issue