Fix brackets of maintainer email
The email address of the maintainer must use angle brackes as per https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Maintainer Also there should be a space between name and email.
This commit is contained in:
parent
c5db10bb90
commit
f7da01d03a
1 changed files with 1 additions and 1 deletions
|
|
@ -109,7 +109,7 @@ class StandardFile
|
|||
public function setMaintainer($maintainer, $email = false)
|
||||
{
|
||||
$email = ($email) ? $email : "---";
|
||||
return $this->_setProperty("Maintainer", $maintainer . "[{$email}]");
|
||||
return $this->_setProperty("Maintainer", $maintainer . " <{$email}>");
|
||||
}
|
||||
|
||||
public function setConflicts($conflicts)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue