[skip ci] fix typo

This commit is contained in:
az 2023-06-05 19:35:25 +02:00
parent fbcdddf031
commit 90086e9c80

View file

@ -72,7 +72,7 @@ fun Prov.configureGopass(gopassRootFolder: String? = null, publicGpgKey: Secret?
fun Prov.gopassMountStore(storeName: String, path: String) = taskWithResult {
val mounts = cmdNoEval("gopass mounts").out ?: return@taskWithResult ProvResult(false, err = "could not determin gopass mounts")
val mounts = cmdNoEval("gopass mounts").out ?: return@taskWithResult ProvResult(false, err = "could not determine gopass mounts")
if (mounts.contains(storeName)) {
ProvResult(true, out = "Store $storeName already mounted.")
} else {