summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2013-06-04 05:38:48 +0200
committerAllan McRae <allan@archlinux.org>2013-06-04 05:38:48 +0200
commitfe794ccb25d3ab1f7c07331b437b61c30c08a018 (patch)
treebe2d85d5649738fec82f9986f86126ac5f1b40e1 /scripts
parentf1d74d928a7ce106dad9303c036222823f347af2 (diff)
downloadpacman-fe794ccb25d3ab1f7c07331b437b61c30c08a018.tar.gz
pacman-fe794ccb25d3ab1f7c07331b437b61c30c08a018.tar.xz
Restrict pkgname from starting with a dot.
Adding this restriction means we can filter any FILENAME entry from starting with a "/" or a ".". Use the term "dot" as it is more computing relevant compared to "full stop" or "period" which vary depending on English locale. Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/makepkg.sh.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index 08dcf4ce..a8a552ff 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -2111,6 +2111,10 @@ check_sanity() {
error "$(gettext "%s is not allowed to start with a hyphen.")" "pkgname"
ret=1
fi
+ if [[ ${i:0:1} = "." ]]; then
+ error "$(gettext "%s is not allowed to start with a dot.")" "pkgname"
+ ret=1
+ fi
if [[ $i = *[^[:alnum:]+_.@-]* ]]; then
error "$(gettext "%s contains invalid characters: '%s'")" \
'pkgname' "${pkgname//[[:alnum:]+_.@-]}"