From 9168ee7c6df7166686e2eeeb7fbb2b75cc809b94 Mon Sep 17 00:00:00 2001 From: GaspardCulis Date: Tue, 13 Feb 2024 16:47:59 +0100 Subject: [PATCH] bashrc: fixed fnm env activation --- shell/bash/.bashrc | 1 + 1 file changed, 1 insertion(+) diff --git a/shell/bash/.bashrc b/shell/bash/.bashrc index d260806..2862018 100755 --- a/shell/bash/.bashrc +++ b/shell/bash/.bashrc @@ -31,6 +31,7 @@ export HISTSIZE=4294967295 # fnm FNM_PATH="$HOME/.local/share/fnm" if test -d "$FNM_PATH" ; then + export PATH="$FNM_PATH:$PATH" eval "$(fnm env --use-on-cd)" fi