Skip to content

Commit 81bcbb2

Browse files
committed
Mon Jul 1 18:35:43 UTC 2019 Chad Elliott <elliottc@objectcomputing.com>
1 parent c8e2f48 commit 81bcbb2

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Mon Jul 1 18:35:43 UTC 2019 Chad Elliott <elliottc@objectcomputing.com>
2+
3+
* modules/TemplateParser.pm:
4+
5+
Check the result of file_sorter() since it does not return
6+
true/false, it returns -1,0,1.
7+
18
Fri Jun 28 15:52:37 UTC 2019 Chad Elliott <elliottc@objectcomputing.com>
29

310
* modules/TemplateParser.pm:

modules/TemplateParser.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2053,7 +2053,7 @@ sub doif_is_custom_input {
20532053
## exist (which isn't guaranteed at project generation time). So,
20542054
## we do the minimal comparison using the file_sorter on the
20552055
## ProjectCreator to handle case sensitivity automatically.
2056-
return 1 if ($self->{'prjc'}->file_sorter($input, $val));
2056+
return 1 if ($self->{'prjc'}->file_sorter($input, $val) == 0);
20572057
}
20582058
}
20592059

0 commit comments

Comments
 (0)