From 2be079a51b6c668a217bdd7f77886f63e786763a Mon Sep 17 00:00:00 2001 From: Clem Fern Date: Sun, 19 Nov 2023 13:22:57 +0100 Subject: [PATCH] fix: use data folder on portable app --- app/lib/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/lib/index.ts b/app/lib/index.ts index c98757b2c1..cc55f41345 100644 --- a/app/lib/index.ts +++ b/app/lib/index.ts @@ -1,5 +1,8 @@ import { app, ipcMain, Menu, dialog } from 'electron' +// set userData Path on portable version +import './portable' + // set defaults of environment variables import 'dotenv/config' process.env.TABBY_PLUGINS ??= '' @@ -7,7 +10,6 @@ process.env.TABBY_CONFIG_DIRECTORY ??= app.getPath('userData') import 'v8-compile-cache' -import './portable' import 'source-map-support/register' import './sentry' import './lru'