mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
fix brewfiles
This commit is contained in:
parent
9cf4c348ee
commit
7cf8d00663
@ -1,8 +1,8 @@
|
||||
# Fun / Unnecessary Packages
|
||||
|
||||
tap "nmasur/repo"
|
||||
tap "tarkah/tickrs"
|
||||
|
||||
brew "ffmpeg" # Convert videos
|
||||
brew "nmasur/repo/bid" # Look up stock tickers
|
||||
brew "nmasur/repo/bee" # Cheat on NYTimes Spelling Bee
|
||||
brew "tickrs" # Interactive stock tickers
|
||||
brew "tarkah/tickrs/tickrs" # Interactive stock tickers
|
||||
|
@ -5,7 +5,7 @@ tap "nmasur/repo"
|
||||
tap "cjbassi/ytop"
|
||||
|
||||
brew "superfly/tap/flyctl" # Fly.io CLI
|
||||
brew "haskell-stack" # Latest version of Haskell
|
||||
brew "ghc" # Haskell
|
||||
brew "xsv" # CSV manipulation
|
||||
brew "gron" # JSON grep
|
||||
brew "nushell" # Data manipulation shell
|
||||
|
@ -1,7 +1,5 @@
|
||||
# Utility Packages
|
||||
|
||||
tap "nmasur/repo"
|
||||
|
||||
brew "jq" # JSON manipulation
|
||||
brew "dos2unix" # File conversion
|
||||
brew "tree" # Display directory trees
|
||||
|
@ -5,12 +5,11 @@ cd "$DOTS" || (echo "Directory not found: $DOTS"; exit 1)
|
||||
DOTS="$PWD"
|
||||
|
||||
all_brews() {
|
||||
for brewfile in $(find "$DOTS/homebrew" -iname "*.Brewfile")
|
||||
do
|
||||
/usr/local/bin/brew bundle check --file "$brewfile" \
|
||||
&& /usr/local/bin/brew bundle --file "$brewfile"
|
||||
done \
|
||||
&& echo "all brews installed ✓"
|
||||
find "$DOTS/homebrew" \
|
||||
-iname "*.Brewfile" \
|
||||
-exec \
|
||||
/usr/local/bin/brew bundle install --file "{}" \;
|
||||
echo "all brews installed ✓"
|
||||
}
|
||||
|
||||
all_brews
|
||||
|
Loading…
Reference in New Issue
Block a user