From 5579b12da002cfe01f7515c17756c5e8030fdbca Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Fri, 26 Aug 2011 12:33:05 -0600 Subject: [PATCH] fix `raco link' collection-name checking --- collects/setup/link.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/setup/link.rkt b/collects/setup/link.rkt index 0de6e8d37a..1215da026d 100644 --- a/collects/setup/link.rkt +++ b/collects/setup/link.rkt @@ -16,7 +16,7 @@ #:repair? [repair? #f] . dirs) (define (check-name name) - (unless (and (regexp-match #rx"^[a-zA-z+_%-]+$" name) + (unless (and (regexp-match #rx"^[a-zA-z0-9+_%-]+$" name) (module-path? name)) (error 'links "name is not valid as a top-level collection name: ~e" name)))