Skip to content

Commit

Permalink
Merge pull request bottlerocket-os#996 from bcressey/buildsys-exclude…
Browse files Browse the repository at this point in the history
…-readme

buildsys: exclude README.md from change tracking
  • Loading branch information
bcressey authored Jul 19, 2020
2 parents f64dcd4 + b673950 commit d5885a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/buildsys/src/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ impl ProjectInfo {
entry
.file_name()
.to_str()
.map(|s| s.starts_with('.') || s == "target" || s == "vendor")
.map(|s| s.starts_with('.') || s == "target" || s == "vendor" || s == "README.md")
.unwrap_or(false)
}
}

0 comments on commit d5885a7

Please sign in to comment.