mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
nasty version hack for quickget (#205)
* nasty version hack for quickget * handle path to self better
This commit is contained in:
parent
979a11ca1b
commit
2a86681bb0
1 changed files with 5 additions and 0 deletions
5
quickget
5
quickget
|
@ -1116,6 +1116,11 @@ if [ -n "${1}" ]; then
|
|||
list_csv
|
||||
elif [ "${OS}" == "list_json" ]; then
|
||||
list_json
|
||||
elif [ "${OS}" == "--version" ] || [ "${OS}" == "-version" ] || [ "${OS}" == "version" ]; then
|
||||
whereIam=$(dirname "${BASH_SOURCE[0]}")
|
||||
quickemu_version=$( ${whereIam}/quickemu --version)
|
||||
echo "Quickemu Version: ${quickemu_version}"
|
||||
exit 0
|
||||
fi
|
||||
else
|
||||
echo "ERROR! You must specify an operating system:"
|
||||
|
|
Loading…
Reference in a new issue