From 22090129ec157b0dbc46a2fc24bb90d967cf2a34 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Wed, 12 Jul 2023 21:19:18 +0300 Subject: [PATCH] feat(tools): dfm brew install tweaks --- Brewfile | 4 ++++ local/bin/dfm | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Brewfile b/Brewfile index 6aba7f0..3c868a8 100644 --- a/Brewfile +++ b/Brewfile @@ -50,6 +50,8 @@ brew "pkg-config" brew "choose-rust" # Cross-platform make brew "cmake" +# Dependency manager for Cocoa projects +brew "cocoapods" # Get, unpack, build, and install modules from CPAN brew "cpanminus" # Open source suite of directory software @@ -276,6 +278,8 @@ cask "dbngin" cask "docker" # Reimagine your terminal cask "fig" +# UI toolkit for building applications for mobile, web and desktop +cask "flutter" # Unofficial overcast.fm podcast app cask "fog" # Typeface made for developers diff --git a/local/bin/dfm b/local/bin/dfm index 0d8cc05..388a6e1 100755 --- a/local/bin/dfm +++ b/local/bin/dfm @@ -149,7 +149,7 @@ function section_brew have brew && { case "$1" in install) - brew bundle install --file="$BREWFILE" && msg_yay "Done!" + brew bundle install --file="$BREWFILE" --force --quiet && msg_yay "Done!" ;; update) brew update && brew outdated && brew upgrade && brew cleanup