Skip to content

Commit 8623aa2

Browse files
authored
Merge pull request #3626 from IgniteUI/sstoychev/fix-gulp-repositoryfy
fix(ci): fixing the gulp task for repositorify
2 parents 07fefdf + cdb2df2 commit 8623aa2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ const processApp = (projectPath, dest, directoriesToExclude) => {
215215
paths.forEach(p => {
216216
tempPath += p + "/";
217217
if (p.indexOf(".") !== -1 && p !== codesandboxConfigFolder) {
218-
fs.writeFileSync(sampleAppPath + "/" + tempPath, sampleContent);
218+
fs.writeFileSync(sampleAppPath + "/" + tempPath.slice(0, -1), sampleContent);
219219
} else
220220
if (p === 'Dockerfile') {
221221
fs.writeFileSync(sampleAppPath + "/" + tempPath, sampleContent);

0 commit comments

Comments
 (0)