Integrates Ubuntu 24.04LTS default bash config and fixes anonymous functions to work properly in bash.

This commit is contained in:
Tom Hicks
2024-09-30 14:16:46 -07:00
parent 7dbc649489
commit 436baf3241
13 changed files with 231 additions and 18 deletions

View File

@@ -1,4 +1,4 @@
function {
function anon() {
local nvm_dir="$HOME/.nvm"
if [ -d $nvm_dir ]; then
@@ -7,3 +7,4 @@ function {
export NVM_DIR=$nvm_dir
fi
}
unset -f anon