fix: help_message function placement
More functions not in correct position, but only this inside something else - To the rest we will get later.
This commit is contained in:
parent
4f886f7c80
commit
9b5593749b
4
quickget
4
quickget
|
|
@ -3846,6 +3846,8 @@ if [[ ! " $(os_support) " =~ " ${OS} " ]]; then
|
||||||
echo -e "ERROR! ${OS} is not a supported OS.\n"
|
echo -e "ERROR! ${OS} is not a supported OS.\n"
|
||||||
os_support
|
os_support
|
||||||
exit 1
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
help_message() {
|
help_message() {
|
||||||
#shellcheck disable=SC2016
|
#shellcheck disable=SC2016
|
||||||
printf ' _ _
|
printf ' _ _
|
||||||
|
|
@ -3893,8 +3895,6 @@ supported Operating Systems:\n' "$(quickemu --version)" "$(qemu-x86_64 -version
|
||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "${2}" ]; then
|
if [ -n "${2}" ]; then
|
||||||
RELEASE="${2,,}"
|
RELEASE="${2,,}"
|
||||||
VM_PATH="${OS}-${RELEASE}"
|
VM_PATH="${OS}-${RELEASE}"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue