From 03669c1812c523a10fcf6efdef6bfb7208a8c625 Mon Sep 17 00:00:00 2001 From: vaultec81 <47548474+vaultec81@users.noreply.github.com> Date: Wed, 20 Jan 2021 11:14:20 -0800 Subject: [PATCH] fix: typo --- src/main/core/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/core/utils.js b/src/main/core/utils.js index 7dd06ca..7e1c442 100644 --- a/src/main/core/utils.js +++ b/src/main/core/utils.js @@ -6,7 +6,7 @@ function getRepoPath() { if (process.env.speak_path) { appPath = process.env.speak_path; } else { - speakPath = Path.join(os.homedir(), ".blasio"); + appPath = Path.join(os.homedir(), ".blasio"); } return appPath; }