From 4fa6810353b9c80248f53e7c17fce5542cac1b54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Lemaire?= Date: Wed, 13 May 2020 14:23:30 +0200 Subject: [PATCH] Fixed config file path --- ui/zenity.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/zenity.ts b/ui/zenity.ts index 0fa1f24..414ae9a 100644 --- a/ui/zenity.ts +++ b/ui/zenity.ts @@ -32,7 +32,7 @@ async function copyToClipboard(text: string): Promise { } async function readPrivateKey(): Promise { - const content = await Deno.readTextFile(".config.json"); + const content = await Deno.readTextFile(".local/config.json"); const config = JSON.parse(content); return config.privateKey; }