We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 51920cf + 682ccf9 commit 7bb2248Copy full SHA for 7bb2248
lib/services/app-files-updater.ts
@@ -17,7 +17,7 @@ export class AppFilesUpdater {
17
18
// exclude the app_resources directory from being enumerated
19
// for copying if it is present in the application sources dir
20
- const appResourcesPathNormalized = path.normalize(projectData.appResourcesDirectoryPath + "\\");
+ const appResourcesPathNormalized = path.normalize(projectData.appResourcesDirectoryPath + path.sep);
21
sourceFiles = sourceFiles.filter(dirName => !path.normalize(dirName).startsWith(appResourcesPathNormalized));
22
23
updateAppOptions.beforeCopyAction(sourceFiles);
0 commit comments