diff options
Diffstat (limited to 'bumpPkgrel')
-rwxr-xr-x | bumpPkgrel | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bumpPkgrel b/bumpPkgrel index 505745bd0..4f5ca355e 100755 --- a/bumpPkgrel +++ b/bumpPkgrel @@ -52,10 +52,10 @@ if [ $# -eq 1 ]; then continue fi if printf '%s\n' "${line}" \ - | grep -q '^\s*_pinned_dependencies=('; then - space="${line%%_pinned_dependencies=(}" - printf '%s_pinned_dependencies=(\n' "${space}" - line="${line#*_pinned_dependencies=(}" + | grep -q '^\s*_pinned_dependencies\([^=[:space:]]*\)=('; then + space="${line%%_pinned_dependencies*=(*}" + printf '%s=(\n' "${line%%=(*}" + line="${line#*_pinned_dependencies*=(}" { while ! printf '%s\n' "${line}" \ | grep -qF ')'; do |