tools: fix substring in s usages, preventing v -W build-tools

This commit is contained in:
Delyan Angelov 2021-03-23 13:36:50 +02:00
parent f2b73fe3ca
commit ae6420afc7
No known key found for this signature in database
GPG key ID: 66886C0F12D595ED
5 changed files with 18 additions and 15 deletions

View file

@ -49,7 +49,7 @@ fn trim_doc_node_description(description string) string {
if dn_description.len > 80 {
dn_description = dn_description[..80]
}
if '\n' in dn_description {
if dn_description.contains('\n') {
dn_description = dn_description.split('\n')[0]
}
// if \ is last character, it ends with \" which leads to a JS error
@ -99,7 +99,7 @@ fn is_included(path string, ignore_paths []string) bool {
return true
}
for ignore_path in ignore_paths {
if ignore_path !in path {
if !path.contains(ignore_path) {
continue
}
return false