Message ID | 1460392641-7060-2-git-send-email-ian.jackson@eu.citrix.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/mg-list-all-branches b/mg-list-all-branches index 87703c7..62d3ff1 100755 --- a/mg-list-all-branches +++ b/mg-list-all-branches @@ -7,11 +7,16 @@ use Sort::Versions; our %branches; +my $branchvar_re = '(?:EXTRA_)?BRANCHES'; +my $branchchr_re = '[-.0-9a-z ]'; + foreach my $f (qw(cr-for-branches crontab)) { open C, $f or die $!; while (<C>) { - next unless m/(?:EXTRA_)?BRANCHES[:+]?='?([-.0-9a-z ]+)/; - $branches{$_}=1 foreach split /\s+/, $1; + next unless + m/\$\{$branchvar_re[:+]?=()($branchchr_re+)\b/ || + m/$branchvar_re[:+]?=('?)($branchchr_re+?)\1\s/; + $branches{$_}=1 foreach split /\s+/, $2; } close C or die $!; }