Skip to content

Commit

Permalink
Fix cmd line parsing bug for the --manifest-js parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
bworline committed Apr 21, 2021
1 parent 113e3b3 commit 7b25b8d
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 7b25b8d

Please sign in to comment.