[aur-dev] [PATCH] pkgsubmit.php: Parse .SRCINFO metadata

Lukas Fleischer archlinux at cryptocrack.de
Tue Mar 5 08:32:02 EST 2013


On Tue, Mar 05, 2013 at 02:23:38PM +0100, Alexander Griesbaum wrote:
> On Mar 5, 2013, at 1:37 PM, Lukas Fleischer wrote:
> 
> > +			if ($line[0] = '#') {
> > +				continue;
> > +			}
> 
> Do you mean
> if ($line[0] == '#') {

Yes, I changed this to

    if (empty($line) || $line[0] == '#') {

during testing but forgot to amend the commit.

`git commit -a --amend`'ed locally. Thanks!

> ?
> 
> Alex


More information about the aur-dev mailing list