13 lines
156 B
Plaintext
13 lines
156 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
if [ -f ~/.asdf/asdf.sh ]
|
||
|
then
|
||
|
|
||
|
# activate asdf
|
||
|
source ~/.asdf/asdf.sh
|
||
|
|
||
|
# activate completion
|
||
|
source ~/.asdf/completions/asdf.bash
|
||
|
|
||
|
fi
|