From 3e8ce134a2de292a0656ddb6a19cc6641c1973e3 Mon Sep 17 00:00:00 2001 From: Greg Hendershott Date: Mon, 18 May 2015 21:35:18 -0400 Subject: [PATCH] Install rackunit-lib and compiler-lib Latter provides the `raco test` command. --- install-racket.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-racket.sh b/install-racket.sh index 9b3749c..db857f0 100755 --- a/install-racket.sh +++ b/install-racket.sh @@ -53,8 +53,8 @@ no EOF if [[ "$RACKET_MINIMAL" = "1" ]]; then - echo "Minimal Racket: Installing rackunit package..." - ${RACKET_DIR}/bin/raco pkg install --auto --scope installation rackunit + echo "Minimal Racket: Installing packages for raco test..." + ${RACKET_DIR}/bin/raco pkg install --auto --scope installation rackunit-lib compiler-lib fi exit 0