dotfiles

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

commit b3d53001c57dc0231e3ecf6f01639f85e324bd45
parent 1868f42306096c8d5d41177e3665182c0c4b6de9
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Sun,  2 Oct 2022 00:19:30 +0200

shell: add new sqlite version to path

Diffstat:
Mshell/paths | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/shell/paths b/shell/paths @@ -25,6 +25,7 @@ [ -d "/usr/local/go/bin" ] || [ -L "/usr/local/go/bin" ] && [ -n "${PATH##*"/usr/local/go/bin"*}" ] && PATH="/usr/local/go/bin:$PATH" [ -d "/usr/local/opt/ruby/bin" ] || [ -L "/usr/local/opt/ruby/bin" ] && [ -n "${PATH##*"/usr/local/opt/ruby/bin"*}" ] && PATH="/usr/local/opt/ruby/bin:$PATH" [ -d "$PYENV_ROOT/bin" ] && [ -n "${PATH##*"$PYENV_ROOT/bin"*}" ] && PATH="$PYENV_ROOT/bin:$PATH" +[ -d "/usr/local/opt/sqlite" ] && [ -n "${PATH##*"/usr/local/opt/sqlite/bin"*}" ] && PATH="/usr/local/opt/sqlite/bin:$PATH" command -v rbenv 1>/dev/null 2>&1 && eval "$(rbenv init -)" command -v jenv 1>/dev/null 2>&1 && eval "$(jenv init -)" command -v pyenv >/dev/null 2>&1 && eval "$(pyenv init -)"