Skip to content

Commit

Permalink
Merge pull request #421 from brave/touch_overridden_files
Browse files Browse the repository at this point in the history
Touch overridden objective-c++ file(.mm) also
  • Loading branch information
bbondy authored Jun 25, 2018
2 parents 4d1f094 + 6b8f328 commit bfd6509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/lib/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const touchOverriddenFiles = (filter) => {

// Only includes cc and h files.
const ext = path.extname(file)
if (ext !== '.cc' && ext !== '.h') { return false }
if (ext !== '.cc' && ext !== '.h' && ext !== '.mm') { return false }

// Touch all overridden files.
if (filter === '*') { return true }
Expand Down

0 comments on commit bfd6509

Please sign in to comment.