diff --git a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/Gopass.kt b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/Gopass.kt index 83357f6..0dcdfcb 100644 --- a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/Gopass.kt +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/Gopass.kt @@ -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 {