mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Android option working (#221)
* Correct generation of android config Missing android sections replaced. Fixes #219# * whitespace
This commit is contained in:
parent
f19b84afeb
commit
31b485db44
1 changed files with 7 additions and 2 deletions
9
quickget
9
quickget
|
@ -653,7 +653,10 @@ function make_vm_config() {
|
|||
|
||||
IMAGE_FILE="${1}"
|
||||
ISO_FILE="${2}"
|
||||
if [ "${OS}" == "archlinux" ]; then
|
||||
if [ "${OS}" == "android" ]; then
|
||||
GUEST="linux"
|
||||
IMAGE_TYPE="iso"
|
||||
elif [ "${OS}" == "archlinux" ]; then
|
||||
GUEST="linux"
|
||||
IMAGE_TYPE="iso"
|
||||
elif [ "${OS}" == "elementary" ]; then
|
||||
|
@ -1409,7 +1412,9 @@ if [ -n "${2}" ]; then
|
|||
fi
|
||||
else
|
||||
echo -n "ERROR! You must specify a release: "
|
||||
if [ "${OS}" == "archlinux" ]; then
|
||||
if [ "${OS}" == "android" ]; then
|
||||
releases_android
|
||||
elif [ "${OS}" == "archlinux" ]; then
|
||||
releases_archlinux
|
||||
elif [ "${OS}" == "elementary" ]; then
|
||||
releases_elementary
|
||||
|
|
Loading…
Reference in a new issue