9 lines
202 B
Bash
9 lines
202 B
Bash
# fnm (Fast Node Manager) configuration
|
|
# https://github.com/Schniz/fnm
|
|
|
|
FNM_PATH="/root/.local/share/fnm"
|
|
if [ -d "$FNM_PATH" ]; then
|
|
export PATH="/root/.local/share/fnm:$PATH"
|
|
eval "`fnm env`"
|
|
fi
|