17 lines
429 B
Bash
17 lines
429 B
Bash
#!/bin/bash
|
|
|
|
cat $HOME/.media/ascii_art.txt
|
|
|
|
if [[ ! -z "${PDK_TECH}" ]]; then
|
|
if [[ ! -z "${PDK_VERSION}" ]]; then
|
|
volare_set_latest
|
|
fi
|
|
else
|
|
echo "
|
|
There is not an active PDK, Use:
|
|
volare_set_latest <pdk_variant>
|
|
to automatically download and configure the latest version of a PDK.
|
|
You can also manually configure a PDK using volare and setting the PDK_TECH environment variable
|
|
"
|
|
fi
|