Skip to content

Commit 32ac699

Browse files
committed
fix(ci): fixing the gulp task for repositorify
1 parent 928afba commit 32ac699

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)