[skip ci] add task to remove snap firefox

This commit is contained in:
az 2023-04-20 23:15:28 +02:00
parent 477b8fd65c
commit d59154ddf6

View file

@ -13,9 +13,12 @@ fun Prov.installFirefox() = task {
// inspired by: https://www.omgubuntu.co.uk/2022/04/how-to-install-firefox-deb-apt-ubuntu-22-04 // inspired by: https://www.omgubuntu.co.uk/2022/04/how-to-install-firefox-deb-apt-ubuntu-22-04
if (chk("snap list | grep firefox")) { task("remove snap firefox") {
cmd("snap remove firefox", sudo = true) if (chk("snap list | grep firefox")) {
cmd("snap remove firefox", sudo = true)
}
} }
aptInstall("software-properties-common") aptInstall("software-properties-common")
cmd("add-apt-repository -y ppa:mozillateam/ppa", sudo = true) cmd("add-apt-repository -y ppa:mozillateam/ppa", sudo = true)
@ -35,4 +38,4 @@ fun Prov.installFirefox() = task {
) )
aptInstall("firefox") aptInstall("firefox")
} }