Skip to content

Commit

Permalink
fix: try gulp pipe without buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
vesameskanen committed Aug 29, 2024
1 parent fb53352 commit 84734ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ gulp.task('router:copy', gulp.series('router:del', function () {
gulp.task('router:buildGraph', gulp.series('router:copy', () => buildOTPGraphTask(config.ALL_CONFIGS())))

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

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

0 comments on commit 84734ee

Please sign in to comment.