Skip to content

Commit

Permalink
Merge pull request #374 from bworline/manifestjs-param-bug
Browse files Browse the repository at this point in the history
Fix cmd line parsing bug for the --manifest-js parameter
  • Loading branch information
dwilsonactual authored Apr 22, 2021
2 parents 113e3b3 + 7b25b8d commit 00029a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/exec/extension/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export class ExtensionBase<T> extends TfCommand<ExtensionArguments, T> {
return Promise.all([
this.commandArgs.root.val(),
this.commandArgs.locRoot.val(),
this.commandArgs.manifestJs.val(),
this.commandArgs.manifestJs.val().then(files => files && files.length ? files[0] : null),
this.commandArgs.env.val(),
this.commandArgs.manifests.val(),
this.commandArgs.manifestGlobs.val(),
Expand Down

0 comments on commit 00029a1

Please sign in to comment.