Skip to content

Commit 9373bdc

Browse files
authored
Merge pull request #118 from opensrc0/develop
fix(path): path issue
2 parents fdf6229 + 2f87d6e commit 9373bdc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

__application/utils/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const getDirPath = (env, CURRENT_APP_DIR, COMPONENT_CONFIG_PATH) => {
1414
if (env === 'local') {
1515
createDir = `${CURRENT_APP_DIR}/${COMPONENT_CONFIG_PATH}/fe-theme-config`;
1616
} else {
17-
createDir = path.resolve(`${__dirname}`, `../../${process.env.COMPONENT_CONFIG_PATH}/fe-theme-config`);
17+
createDir = path.resolve(`${__dirname}`, `../../../../${process.env.COMPONENT_CONFIG_PATH}/fe-theme-config`);
1818
}
1919

2020
return createDir;

0 commit comments

Comments
 (0)