diff options
author | 2017-10-31 10:32:24 +0530 | |
---|---|---|
committer | 2017-10-31 10:32:24 +0530 | |
commit | cecd33ef243f0bdbc08e1252259bb6bfd503bf11 (patch) | |
tree | 26ffab69ad9f99824a3ac691e0ae0391cf18eced | |
parent | keeping the profs at Cambridge happy... (diff) | |
download | gitolite-gentoo-cecd33ef243f0bdbc08e1252259bb6bfd503bf11.tar.gz gitolite-gentoo-cecd33ef243f0bdbc08e1252259bb6bfd503bf11.tar.bz2 gitolite-gentoo-cecd33ef243f0bdbc08e1252259bb6bfd503bf11.zip |
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-x | src/commands/compile-template-data | 2 |
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; |