7 lines
119 B
Bash
7 lines
119 B
Bash
#!/bin/bash
|
|
|
|
if test -d ~/.asdf; then
|
|
source $HOME/.asdf/asdf.sh
|
|
source $HOME/.asdf/completions/asdf.bash
|
|
fi
|