From 8e7ec75ef84e83a06faa5ac496071b07eae7bb18 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Tue, 23 Apr 2013 13:37:59 -0600 Subject: [PATCH] raco pkg: fix `--scope user' option --- collects/pkg/main.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/pkg/main.rkt b/collects/pkg/main.rkt index cf5d240fef..01e354d849 100644 --- a/collects/pkg/main.rkt +++ b/collects/pkg/main.rkt @@ -31,7 +31,7 @@ (define (call-with-package-scope who given-scope installation shared user thunk) (define scope (case given-scope - [(installation use shared) given-scope] + [(installation user shared) given-scope] [else (cond [installation 'installation]