Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmagolan committed May 11, 2019
1 parent 2f0a609 commit 3fc8400
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/npm_install/generate_build_file.js
Original file line number Diff line number Diff line change
Expand Up @@ -482,9 +482,9 @@ function listFiles(rootDir, subDir = '') {
*/
function hasRootBuildFile(pkg) {
for (const file of pkg._files) {
// Bazel files would have been renamed earlier with a _ prefix
// Bazel files would have been renamed earlier with a `_` prefix
const fileUc = file.toUpperCase();
if (fileUc === '_BUILD' || fileUc === '_BUILD.bazel') {
if (fileUc === '_BUILD' || fileUc === '_BUILD.BAZEL') {
return true;
}
}
Expand Down

0 comments on commit 3fc8400

Please sign in to comment.