Skip to content

Commit 20bcb40

Browse files
committedJan 16, 2021
fix: package output not being set
1 parent 3a879bd commit 20bcb40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/prepare.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = async (version, packageVsix, yarn, logger) => {
1010
const options = ['package'];
1111

1212
if (typeof packageVsix === 'string') {
13-
options.concat(['--out', packageVsix]);
13+
options.push(...['--out', packageVsix]);
1414
}
1515

1616
if (yarn) {

0 commit comments

Comments
 (0)
Please sign in to comment.