Skip to content

Commit 5be1c6c

Browse files
authored
Add more flavours to iso.bat
1 parent 98de3e4 commit 5be1c6c

1 file changed

Lines changed: 26 additions & 2 deletions

File tree

.github/workflows/iso.bat

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ ECHO.
2121
ECHO 1. Ubuntu
2222
ECHO 2. Kubuntu
2323
ECHO 3. Ubuntu Unity
24+
ECHO 4. Ubuntu Budgie
25+
ECHO 5. Ubuntu Cinnamon
26+
ECHO 6. Ubuntu MATE
27+
ECHO 7. Xubuntu
2428
ECHO.
2529
ECHO Type your choice (1, 2 etc.) from the above list and press return.
2630
SET /P flavinput=
@@ -37,8 +41,28 @@ IF "%flavinput%"=="1" (
3741
SET flavour=ubuntu-unity
3842
SET flavourcap=Ubuntu Unity
3943
) ELSE (
40-
ECHO Invalid input. Aborting!
41-
EXIT
44+
IF "%flavinput%"=="4" (
45+
SET flavour=ubuntu-budgie
46+
SET flavourcap=Ubuntu Budgie
47+
) ELSE (
48+
IF "%flavinput%"=="5" (
49+
SET flavour=ubuntucinnamon
50+
SET flavourcap=Ubuntu Cinnamon
51+
) ELSE (
52+
IF "%flavinput%"=="6" (
53+
SET flavour=ubuntu-mate
54+
SET flavourcap=Ubuntu MATE
55+
) ELSE (
56+
IF "%flavinput%"=="7" (
57+
SET flavour=xubuntu
58+
SET flavourcap=Xubuntu
59+
) ELSE (
60+
ECHO Invalid input. Aborting!
61+
EXIT
62+
)
63+
)
64+
)
65+
)
4266
)
4367
)
4468
)

0 commit comments

Comments
 (0)