From a2c4acda42a0fbf2494680c0d14811d49f7df312 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Mon, 28 Apr 2025 20:00:59 +0100 Subject: [PATCH] [shell-common] Quote vars --- macos/.config/shell-common/brewfile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macos/.config/shell-common/brewfile.sh b/macos/.config/shell-common/brewfile.sh index a329526..f30b443 100644 --- a/macos/.config/shell-common/brewfile.sh +++ b/macos/.config/shell-common/brewfile.sh @@ -1,4 +1,4 @@ # Updates Homebrew installation from the Brewfile function update-brewfile() { - brew bundle check --file ~/.config/Brewfile || brew bundle --cleanup -f --file ~/.config/Brewfile + brew bundle check --file "$HOME/.config/Brewfile" || brew bundle --cleanup -f --file "$HOME/.config/Brewfile" }