From 0d2fd55fb1518d4ef715f36625dc1d788ad15c32 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Tue, 29 Jul 2008 20:06:13 +0000 Subject: [PATCH] Make the push-all script complain about bad lines --- push-all | 3 +++ 1 file changed, 3 insertions(+) diff --git a/push-all b/push-all index d4491cf..545cbe2 100644 --- a/push-all +++ b/push-all @@ -67,6 +67,9 @@ sub pushall { message "== $localpath repo not present; skipping"; } } + elsif (! /^(#.*)?$/) { + die "Bad line: $_"; + } } close IN; } -- 1.7.10.4