Skip to content

Commit

Permalink
Touch overridden objective-c++ file(.mm) also
Browse files Browse the repository at this point in the history
  • Loading branch information
simonhong committed Jun 25, 2018
1 parent 4d1f094 commit 6b8f328
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 6b8f328

Please sign in to comment.