distro-build/config: fix string checking for uppercase

This commit is contained in:
Matthew Flatt 2015-08-29 19:11:06 -06:00
parent 7730ddb73c
commit cf4e6d2b8a

View File

@ -182,7 +182,7 @@
(and (string? s)
;; No spaces, quotes, or other things that could
;; break a command-line, path, or URL construction:
(regexp-match #rx"^[-a-zA-A0-9.]*$" s)))
(regexp-match #rx"^[-a-zA-Z0-9.]*$" s)))
(define (email? s)
(and (string? s)