Skip to content

Commit

Permalink
πŸ—πŸ› Fix two bugs in PR check (#21272)
Browse files Browse the repository at this point in the history
  • Loading branch information
rsimha committed Mar 5, 2019
1 parent 0023747 commit 5503bc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build-system/pr-check/dist-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function main() {

if (!isTravisPullRequestBuild()) {
timedExecOrDie('gulp update-packages');
downloadDistOutput();
downloadDistOutput(FILENAME);
timedExecOrDie('gulp bundle-size --on_push_build');
runSinglePassTest_();
} else {
Expand Down
2 changes: 1 addition & 1 deletion build-system/pr-check/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ async function downloadOutput_(functionName, outputFileName) {

console.log(fileLogPrefix, 'Verifying extracted files...');
exec('echo travis_fold:start:verify_unzip_results && echo');
execOrDie(`ls -la ${OUTPUT_DIRS}`);
execOrDie(`ls -laR ${OUTPUT_DIRS}`);
exec('echo travis_fold:end:verify_unzip_results');
}

Expand Down

0 comments on commit 5503bc9

Please sign in to comment.