summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSitaram Chamarty <sitaram@atc.tcs.com>2017-10-31 10:32:24 +0530
committerSitaram Chamarty <sitaram@atc.tcs.com>2017-10-31 10:32:24 +0530
commitcecd33ef243f0bdbc08e1252259bb6bfd503bf11 (patch)
tree26ffab69ad9f99824a3ac691e0ae0391cf18eced
parent09faacb4d8869e4200591e698254d5b8cd872154 (diff)
change silent ignore to warning...
we may also need a linter for this whole thing later, depending on usage and any reports coming in.
-rwxr-xr-xsrc/commands/compile-template-data2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/compile-template-data b/src/commands/compile-template-data
index 23ee7a9..d30d5a9 100755
--- a/src/commands/compile-template-data
+++ b/src/commands/compile-template-data
@@ -50,7 +50,7 @@ while (<>) {
$_ = $lip . $_;
$lip = '';
- next if m([^ \w.\@/=-]); # silently ignore lines that have characters we don't need
+ _warn("bad line: $_"), next if m([^ \w.\@/=-]); # silently ignore lines that have characters we don't need
if (/^\s*repo\s+(\S.*)=\s*(\S.*)$/) {
flush($repos, $list, $perms);
$repos = $1;