From 99590c2dd60a418e386f11cb96f61687f3448f6c Mon Sep 17 00:00:00 2001 From: erik Date: Wed, 31 Aug 2022 15:11:44 +0200 Subject: [PATCH] [skip-ci] Allow execution of gopass_wrapper.sh Firefox wasn't allowed to execute the gopass_wrapper.sh in Ubuntu 22.04. Explicitly adding it to the Apparmor firefox profile solves this. Lower jsonApiVersion. --- .../provs/desktop/infrastructure/GopassBridge.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/GopassBridge.kt b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/GopassBridge.kt index 2515e6b..fe7e38f 100644 --- a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/GopassBridge.kt +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/GopassBridge.kt @@ -27,7 +27,7 @@ fun Prov.downloadGopassBridge() = task { fun Prov.installGopassBridgeJsonApi() = task { // see https://github.com/gopasspw/gopass-jsonapi - val gopassJsonApiVersion = "1.14.3" + val gopassJsonApiVersion = "1.11.1" val requiredGopassVersion = "1.14.4" val filename = "gopass-jsonapi_${gopassJsonApiVersion}_linux_amd64.deb" val downloadUrl = "-L https://github.com/gopasspw/gopass-jsonapi/releases/download/v$gopassJsonApiVersion/$filename"