Skip to content

Commit 84734ee

Browse files
committed
fix: try gulp pipe without buffer
1 parent fb53352 commit 84734ee

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
@@ -168,7 +168,7 @@ gulp.task('router:copy', gulp.series('router:del', function () {
168168
gulp.task('router:buildGraph', gulp.series('router:copy', () => buildOTPGraphTask(config.ALL_CONFIGS())))
169169

170170
gulp.task('router:store', () =>
171-
gulp.src(`${config.dataDir}/build/${routerId}/**/*`).pipe(gulp.dest(`${config.storageDir}/${global.storageDirName}/`))
171+
gulp.src(`${config.dataDir}/build/${routerId}/**/*`, { buffer: false }).pipe(gulp.dest(`${config.storageDir}/${global.storageDirName}/`))
172172
)
173173

174174
gulp.task('deploy:prepare', () => patchDeploymentFiles())

0 commit comments

Comments
 (0)