Skip to content

Commit

Permalink
build: fix broken bazel build
Browse files Browse the repository at this point in the history
  • Loading branch information
adeora committed Jul 25, 2017
1 parent 91ab39c commit edd540c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/ngc-wrapped/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function main(args: string[]) {
const [{options, bazelOpts, files, config}] = parseTsconfig(args[1]);
const ngOptions: {expectedOut: string[]} = (config as any).angularCompilerOptions;

const result = ngc(args, undefined, files, options, ngOptions);
const result = ngc(args, undefined);

if (result === 0) {
// Ensure that expected output files exist.
Expand All @@ -34,4 +34,4 @@ function main(args: string[]) {

if (require.main === module) {
process.exitCode = main(process.argv.slice(2));
}
}

0 comments on commit edd540c

Please sign in to comment.