Skip to content

Commit

Permalink
chore: Make brew-shell just command more accurate (ublue-os#573)
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleGospo authored Oct 9, 2023
1 parent 3566bc1 commit 04e8a08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions just/custom.just
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down

0 comments on commit 04e8a08

Please sign in to comment.