Skip to content

Commit

Permalink
Update trim script to handle .m files
Browse files Browse the repository at this point in the history
[#142848761]
  • Loading branch information
jwfriese committed Apr 4, 2017
1 parent 4d2e3bd commit 2d190c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/trim.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func visit(path string, info os.FileInfo, err error) error {
return nil
}

if !(strings.HasSuffix(path, ".swift") || strings.HasSuffix(path, ".h") || strings.HasSuffix(path, ".md")) {
if !(strings.HasSuffix(path, ".swift") || strings.HasSuffix(path, ".h") || strings.HasSuffix(path, ".md") || strings.HasSuffix(path, ".m")) {
return nil
}

Expand Down

0 comments on commit 2d190c5

Please sign in to comment.