[skip ci] refactor installNextcloudClient in own file - fix

This commit is contained in:
az 2022-07-20 19:42:52 +02:00
parent 4a3a25e21c
commit f7628101af

View file

@ -0,0 +1,9 @@
package org.domaindrivenarchitecture.provs.desktop.infrastructure
import org.domaindrivenarchitecture.provs.framework.core.Prov
import org.domaindrivenarchitecture.provs.framework.ubuntu.install.base.aptInstallFromPpa
fun Prov.installNextcloudClient() = task {
aptInstallFromPpa("nextcloud-devs", "client", "nextcloud-client")
}