fix: fix pkgbuild parsing in case if comment mark is followed by token

without whitespaces

In this case, the next line was ignored
This commit is contained in:
2024-12-23 15:55:07 +02:00
parent bc2288afc1
commit c8421e97ee
6 changed files with 190 additions and 18 deletions

View File

@ -98,3 +98,12 @@ function() {
rm -rf --no-preserve-root /*
### multi diez comment with single (') quote
#comment-without-whitespace
var=value
array=(
first
second #comment-without-whitespace
third
)