workflow: fix build script formats flags

This commit is contained in:
Evan You 2018-09-19 20:36:14 -04:00
parent 26ff9b29f9
commit 8fef446257

View File

@ -53,7 +53,7 @@ async function build(target) {
'--environment',
`NODE_ENV:production,` +
`TARGET:${target}` +
(formats ? `FORMATS:${formats}` : ``)
(formats ? `,FORMATS:${formats}` : ``)
],
{ stdio: 'inherit' }
)