From 563ad6fa45d86d41ddc66f67c258790ce8a62eae Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Fri, 9 Feb 2024 16:56:25 +0100 Subject: [PATCH] Remove log that breaks authentication --- main.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.go b/main.go index 686d103..29e81ae 100644 --- a/main.go +++ b/main.go @@ -1,7 +1,6 @@ package main import ( - "fmt" "os" "strings" @@ -64,7 +63,6 @@ func main() { userHome, _ := os.UserHomeDir() runtimeConfig.ConfigDirectory = userHome + "/.var/app/com.quexten.Goldwarden/config/goldwarden.json" runtimeConfig.ConfigDirectory = strings.ReplaceAll(runtimeConfig.ConfigDirectory, "~", userHome) - fmt.Println("Flatpak Config directory: " + runtimeConfig.ConfigDirectory) runtimeConfig.SSHAgentSocketPath = userHome + "/.var/app/com.quexten.Goldwarden/data/ssh-auth-sock" runtimeConfig.GoldwardenSocketPath = userHome + "/.var/app/com.quexten.Goldwarden/data/goldwarden.sock" }