small fixes

This commit is contained in:
Maxim Stewart 2020-05-02 19:03:53 -05:00
parent a85116acf9
commit 8a4d9a7ec7
3 changed files with 5 additions and 4 deletions

View File

@ -15,4 +15,5 @@ n/a
* Create extremely bare bones install pipeline for core dependencies accross all build types.
# Images
![1 Distro Builder menu. ](images/pic1.png)
![1 Distro Builder Menu. ](images/pic1.png)
![1 Distro Builder Chroot Menu. ](images/pic2.png)

BIN
images/pic2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -64,9 +64,9 @@ function get_live_iso_dependencies() {
read -p "--> : " ANSR
done
case $ANSR in
"0" ) apt-get install --yes ubiquity-frontend-gtk --no-install-recommends --no-install-suggests;;
"1" ) apt-get install --yes ubiquity-frontend-kde --no-install-recommends --no-install-suggests;;
"2" ) return;;
"1" ) apt-get install --yes ubiquity-frontend-gtk --no-install-recommends --no-install-suggests;;
"2" ) apt-get install --yes ubiquity-frontend-kde --no-install-recommends --no-install-suggests;;
"0" ) return;;
esac
}