Skip to content

Commit 81bac97

Browse files
committed
feat: fixed spelling error in available dir
1 parent 4b5f2b1 commit 81bac97

25 files changed

+6
-3
lines changed
File renamed without changes.
File renamed without changes.
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# anything in $HOME/.local/bash_completion.d ending .bash get included
2-
source "$HOME/.local/bash_completion.d/*.bash"
3-
2+
for x in "$HOME/.local/bash_completion.d/*.bash"; do
3+
source "$x"
4+
done
45
# other environment specific scripts should not end .bash, e.g. see 87_django.bash
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

avaiable/10_nvm.bash renamed to available/10_nvm.bash

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
if [ -z "$NVM_V" ]; then
2-
export NVM_V=14.15.3
2+
export NVM_V=18.14.1
33
fi
44

55
export NVM_DIR="$HOME/.nvm"
@@ -10,4 +10,6 @@ if [ ! -d "${HOME}/.nvm/versions/node/v${NVM_V}" ]; then
1010
nvm install ${NVM_V}
1111
fi
1212

13+
export PATH=$PATH:/home/tobias/.nvm/versions/node/v${NVM_V}/bin/workbox
14+
1315
nvm use $NVM_V
File renamed without changes.

0 commit comments

Comments
 (0)