From: Jason Ish Date: Tue, 3 May 2022 19:36:11 +0000 (-0600) Subject: bundle.sh: comment line fixup X-Git-Tag: suricata-7.0.0-beta1~309 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5d66a7452ba7aba6f3239aab478f0c9cb695ea6;p=thirdparty%2Fsuricata.git bundle.sh: comment line fixup Accept lines that start with a hash, but not immediately followed by a space as a comment as well. --- diff --git a/scripts/bundle.sh b/scripts/bundle.sh index 44f634fbc6..46c0c0500c 100755 --- a/scripts/bundle.sh +++ b/scripts/bundle.sh @@ -35,7 +35,7 @@ while IFS= read -r requirement; do rm -rf libhtp git clone "${repo}" -b "${branch}" libhtp ;; - \#) + \#*) # Ignore comment. ;; "")