aboutsummaryrefslogtreecommitdiffstats
path: root/src/helpers
diff options
context:
space:
mode:
Diffstat (limited to 'src/helpers')
-rw-r--r--src/helpers/asar-helpers.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helpers/asar-helpers.ts b/src/helpers/asar-helpers.ts
index 3da90625d..9d975c193 100644
--- a/src/helpers/asar-helpers.ts
+++ b/src/helpers/asar-helpers.ts
@@ -5,6 +5,6 @@ export function asarPath(dir: string = '') {
5} 5}
6 6
7// Replacing app.asar is not beautiful but unfortunately necessary 7// Replacing app.asar is not beautiful but unfortunately necessary
8export function asarRecipesPath(...segments: any[]) { 8export function asarRecipesPath(...segments: string[]) {
9 return join(asarPath(join(__dirname, '..', 'recipes')), ...[segments].flat()); 9 return join(asarPath(join(__dirname, '..', 'recipes')), ...[segments].flat());
10} 10}