From 9be6bc2571d61adc794a594985031c0ae960b812 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Fri, 8 Jul 2022 14:55:13 +0300 Subject: [PATCH] fix ~/.bin export path --- ~/Bash/.bashrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/~/Bash/.bashrc b/~/Bash/.bashrc index 43ab285..69b4fce 100644 --- a/~/Bash/.bashrc +++ b/~/Bash/.bashrc @@ -2,6 +2,7 @@ [[ $- != *i* ]] && return export GPG_TTY=$(tty) +export PATH="$PATH:$HOME/.bin" # ALIASES alias ls='ls --color=auto' @@ -17,5 +18,5 @@ if [ -d "$HOME/.nvm" ]; then export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" - export PATH="$PATH:node_modules/.bin:$HOME/.bin" + export PATH="$PATH:node_modules/.bin" fi