From 90086e9c80534ba721b53d6b91ebd57380b092f2 Mon Sep 17 00:00:00 2001 From: az Date: Mon, 5 Jun 2023 19:35:25 +0200 Subject: [PATCH] [skip ci] fix typo --- .../provs/desktop/infrastructure/Gopass.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {