Added one more 'exit()'.

10.3.x-maintenance
Michael Keller 2018-05-18 22:08:29 +12:00
parent 07040d91e3
commit 4d4939f3d6
1 changed files with 2 additions and 1 deletions

View File

@ -377,7 +377,8 @@ function compressFiles(srcPath, basePath, outputFile, zipFolder) {
return gulp.src(srcPath, { base: basePath })
.pipe(rename(function(actualPath){ actualPath.dirname = path.join(zipFolder, actualPath.dirname) }))
.pipe(zip(outputFile))
.pipe(gulp.dest(RELEASE_DIR));
.pipe(gulp.dest(RELEASE_DIR))
.pipe(exit());
}
function release_deb(arch, done) {