dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 10f029788aa83ac8241e27e1711f3d767132d8fb
parent 16642efe0d574c97bd66d92b5d130b3db8e53a54
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Sun, 17 May 2020 13:59:06 +0200

shell: add homebrew gnu core utils to path

Former-commit-id: cfbc272ca28946c86ca8c52bcb79a708a34f2a29
Diffstat:
Mshell/profile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/shell/profile b/shell/profile @@ -52,8 +52,8 @@ fi if command -v rbenv 1>/dev/null 2>&1; then eval "$(rbenv init -)" fi -if [ -d "/usr/local/opt/gnu-sed/libexec/gnubin" ]; then - PATH="/usr/local/opt/gnu-sed/libexec/gnubin:$PATH" +if [ -d "/usr/local/opt/coreutils/libexec/gnubin" ]; then + PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH" fi if [ -d "$HOME/.local/gnat/bin" ]; then PATH="$PATH:$HOME/.local/gnat/bin"