index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | morganamilo <morganamilo@gmail.com> | 2019-10-22 11:39:50 +0100 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2019-10-22 23:18:48 +1000 |
commit | c58bf862b456a5c755c6a2a6c2b51e17c542da28 (patch) | |
tree | 8ec248fd53acb2661378a6914c252a63973881f8 /scripts/libmakepkg | |
parent | 7df70e7fff7ded37b0d1fe1be814f4b70aa754ad (diff) |
-rw-r--r-- | scripts/libmakepkg/lint_config/variable.sh.in | 2 |
diff --git a/scripts/libmakepkg/lint_config/variable.sh.in b/scripts/libmakepkg/lint_config/variable.sh.in index aa9f6c07..a4c17fe4 100644 --- a/scripts/libmakepkg/lint_config/variable.sh.in +++ b/scripts/libmakepkg/lint_config/variable.sh.in @@ -62,7 +62,7 @@ lint_config_variables() { # pacman should be able to extract an email address from PACKAGER for WKD key lookup local match='^([^<>]+ )?<[^<>]*>$' - if ! [[ $PACKAGER =~ $match ]]; then + if ! [[ $PACKAGER == "Unknown Packager" || $PACKAGER =~ $match ]]; then warning "$(gettext "PACKAGER should have the format 'Example Name <email@address.invalid>'")" fi |