These files are always sourced (never executed directly), so the #!/bin/bash shebang is inert and misleading. Drop it consistently across rc.d/*, profile.d/*, and aliases.d/*.
15 lines
317 B
Plaintext
15 lines
317 B
Plaintext
if [ -f ~/.asdf/asdf.sh ]; then
|
|
|
|
# activate asdf
|
|
source ~/.asdf/asdf.sh
|
|
|
|
# activate completion
|
|
source ~/.asdf/completions/asdf.bash
|
|
|
|
fi
|
|
|
|
if [ -f "$HOME/.nix-profile/share/asdf-vm/asdf.sh" ]; then
|
|
. "$HOME/.nix-profile/share/asdf-vm/asdf.sh"
|
|
. "$HOME/.nix-profile/share/bash-completion/completions/asdf.bash"
|
|
fi
|