Commit 4ed1f02c authored by Igor Pecovnik's avatar Igor Pecovnik
Browse files

Small bugfix

parent ebe96a02
......@@ -1050,11 +1050,15 @@ unset selection
;;
"Writer" )
debconf-apt-progress -- apt-get -y install libreoffice-writer libreoffice-style-tango libreoffice-gtk
pkg_install="libreoffice-writer libreoffice-style-tango"
if [[ "$DISTROID" == "xenial" ]]; then pkg_install+=" libreoffice-gtk"; else pkg_install+=" libreoffice-gtk2"; fi
debconf-apt-progress -- apt-get -y install $pkg_install
;;
"Suite" )
debconf-apt-progress -- apt-get -y install libreoffice libreoffice-style-tango libreoffice-gtk
pkg_install="libreoffice libreoffice-style-tango"
if [[ "$DISTROID" == "xenial" ]]; then pkg_install+=" libreoffice-gtk"; else pkg_install+=" libreoffice-gtk2"; fi
debconf-apt-progress -- apt-get -y install $pkg_install
;;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment