aboutsummaryrefslogtreecommitdiffstats
path: root/src/helpers/recipe-helpers.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/helpers/recipe-helpers.js')
-rw-r--r--src/helpers/recipe-helpers.js11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/helpers/recipe-helpers.js b/src/helpers/recipe-helpers.js
index 7daa0aaab..7e4bfa85a 100644
--- a/src/helpers/recipe-helpers.js
+++ b/src/helpers/recipe-helpers.js
@@ -1,12 +1,12 @@
1import path from 'path'; 1import { parse } from 'path';
2import { app } from '@electron/remote'; 2import { userDataRecipesPath } from '../environment';
3 3
4export function getRecipeDirectory(id = '') { 4export function getRecipeDirectory(id = '') {
5 return path.join(app.getPath('userData'), 'recipes', id); 5 return userDataRecipesPath(id);
6} 6}
7 7
8export function getDevRecipeDirectory(id = '') { 8export function getDevRecipeDirectory(id = '') {
9 return path.join(app.getPath('userData'), 'recipes', 'dev', id); 9 return userDataRecipesPath('dev', id);
10} 10}
11 11
12export function loadRecipeConfig(recipeId) { 12export function loadRecipeConfig(recipeId) {
@@ -19,8 +19,7 @@ export function loadRecipeConfig(recipeId) {
19 let config = require(configPath); 19 let config = require(configPath);
20 20
21 const moduleConfigPath = require.resolve(configPath); 21 const moduleConfigPath = require.resolve(configPath);
22 const paths = path.parse(moduleConfigPath); 22 config.path = parse(moduleConfigPath).dir;
23 config.path = paths.dir;
24 23
25 return config; 24 return config;
26 } catch (e) { 25 } catch (e) {