1
0
Fork 0

Fixed config file path

This commit is contained in:
Michaël Lemaire 2020-05-13 14:23:30 +02:00
parent fdb9e86d9d
commit 4fa6810353
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ async function copyToClipboard(text: string): Promise<void> {
}
async function readPrivateKey(): Promise<string> {
const content = await Deno.readTextFile(".config.json");
const content = await Deno.readTextFile(".local/config.json");
const config = JSON.parse(content);
return config.privateKey;
}