fix deployment command

This commit is contained in:
Matthias Kretschmann 2018-09-28 13:22:26 +02:00
parent f390dd3022
commit f24bb443ad
Signed by: m
GPG Key ID: 606EEEF3C479A91F
1 changed files with 3 additions and 1 deletions

View File

@ -376,7 +376,7 @@ export default dev
// gulp deploy --beta
// gulp deploy --gamma
//
export const s3 = () => {
export const s3 = (done) => {
// create publisher, define config
let publisher
@ -451,6 +451,8 @@ export const s3 = () => {
.pipe($.awspublish.reporter({
states: ['create', 'update', 'delete']
}))
done()
}