fix: GH-873 App bundle builds to obey command-line arguments (#941)

This commit is contained in:
Norman Breau
2020-04-01 01:59:39 -03:00
committed by GitHub
parent 6e51943d15
commit c93f93f637
2 changed files with 19 additions and 2 deletions
+2 -2
View File
@@ -141,10 +141,10 @@ class ProjectBuilder {
if (opts.arch) {
args.push('-PcdvBuildArch=' + opts.arch);
}
args.push.apply(args, opts.extraArgs);
}
args.push.apply(args, opts.extraArgs);
return args;
}