From 830829215f3fb403b0e8451ae7c414ae40d42e0e Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 27 Jan 2025 15:11:34 +0000 Subject: [PATCH] cmd/bundle: use `~` instead of `${HOME}` Partial revert of https://github.com/Homebrew/homebrew-bundle/pull/1579 See https://github.com/Homebrew/brew/pull/19153#discussion_r1930678587 --- cmd/bundle.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/bundle.rb b/cmd/bundle.rb index ea65e0328..9e2a142cd 100755 --- a/cmd/bundle.rb +++ b/cmd/bundle.rb @@ -71,7 +71,7 @@ class BundleCmd < AbstractCommand switch "--global", description: "Read the `Brewfile` from `$HOMEBREW_BUNDLE_FILE_GLOBAL` (if set), " \ "`${XDG_CONFIG_HOME}/homebrew/Brewfile` (if `$XDG_CONFIG_HOME` is set), " \ - "`${HOME}/.homebrew/Brewfile` or `${HOME}/.Brewfile` otherwise." + "`~/.homebrew/Brewfile` or `~/.Brewfile` otherwise." switch "-v", "--verbose", description: "`install` prints output from commands as they are run. " \ "`check` lists all missing dependencies."