From a5d66a7452ba7aba6f3239aab478f0c9cb695ea6 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Tue, 3 May 2022 13:36:11 -0600 Subject: [PATCH] bundle.sh: comment line fixup Accept lines that start with a hash, but not immediately followed by a space as a comment as well. --- scripts/bundle.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. ;; "")