12 lines
153 B
Bash
12 lines
153 B
Bash
#!/bin/bash
|
|
|
|
if [ -f ~/.asdf/asdf.sh ]; then
|
|
|
|
# activate asdf
|
|
source ~/.asdf/asdf.sh
|
|
|
|
# activate completion
|
|
source ~/.asdf/completions/asdf.bash
|
|
|
|
fi
|