Skip to content

Commit 68b2226

Browse files
luckyraulciprianbadescu
authored andcommitted
(main) Linux Mint Support (#434)
* Linux Mint Support * merge patterns * fix download_url
1 parent 564a240 commit 68b2226

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

tasks/install_shell.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,18 @@ case $platform in
483483
filename="${collection}-release-${deb_codename}.deb"
484484
download_url="${apt_source}/${filename}"
485485
;;
486+
"Linuxmint"|"LinuxMint")
487+
info "Mint platform! Lets get you a DEB..."
488+
case $major_version in
489+
"3") deb_codename="stretch";;
490+
"19") deb_codename="bionic";;
491+
"18") deb_codename="xenial";;
492+
"17") deb_codename="trusty";;
493+
esac
494+
filetype="deb"
495+
filename="${collection}-release-${deb_codename}.deb"
496+
download_url="${apt_source}/${filename}"
497+
;;
486498
"Ubuntu")
487499
info "Ubuntu platform! Lets get you a DEB..."
488500
case $platform_version in

0 commit comments

Comments
 (0)