From 04e8a08419cb2d9136438c5ae7bfa068eef6dff0 Mon Sep 17 00:00:00 2001 From: Kyle Gospodnetich Date: Mon, 9 Oct 2023 05:40:35 -0700 Subject: [PATCH] chore: Make brew-shell just command more accurate (#573) --- just/custom.just | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/just/custom.just b/just/custom.just index 87030210db3..d8fd1f8e347 100644 --- a/just/custom.just +++ b/just/custom.just @@ -40,14 +40,14 @@ brew-shell: echo "Brew configuration already present in .zprofile" else echo "Adding Brew configuration to .zprofile" - echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> $HOME/.zprofile + echo 'eval "$(/var/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> $HOME/.zprofile fi if grep -q "linuxbrew" $HOME/.bash_profile then echo "Brew configuration already present in .bash_profile" else echo "Adding Brew configuration to .bash_profile" - echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> $HOME/.bash_profile + echo 'eval "$(/var/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> $HOME/.bash_profile fi # Enable Cockpit for web-based system management | https://cockpit-project.org/