Skip to content

Commit 7227094

Browse files
committed
added error handling on shelljs operations where necessary
1 parent cdf43bd commit 7227094

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/services/project-service.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,8 @@ export class ProjectService implements IProjectService {
140140

141141
shelljs.cp('-R', path.join(appSourcePath, "*"), appDestinationPath);
142142
// Copy hidden files.
143-
shelljs.cp('-R', path.join(appSourcePath, ".*"), appDestinationPath);
143+
//TODO: plamen5kov: don't copy hidden files, until we find a reason to do it
144+
// shelljs.cp('-R', path.join(appSourcePath, ".*"), appDestinationPath);
144145

145146
this.$fs.createDirectory(path.join(projectDir, "platforms"));
146147

0 commit comments

Comments
 (0)