From 445154aeef76fe82841efe8b6172bd4d7e07c81c Mon Sep 17 00:00:00 2001 From: Peter Bex Date: Thu, 21 Jun 2018 18:11:10 +0200 Subject: [PATCH] Always fetch tests when retrieving eggs to avoid caching issues When chicken-install retrieves an egg without tests, and later you want to install and run the tests, it will act like there are no tests because it uses the cached dir as if it contained the entire egg. This fixes #1477 --- chicken-install.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chicken-install.scm b/chicken-install.scm index 9fa22aec..cc7bb33a 100644 --- a/chicken-install.scm +++ b/chicken-install.scm @@ -468,7 +468,7 @@ (try-download name (resolve-location (car srvs)) version: version destination: tmpdir - tests: run-tests + tests: #t ;; Always fetch tests, otherwise cached eggs can't be tested later proxy-host: proxy-host proxy-port: proxy-port proxy-user-pass: proxy-user-pass) -- 2.11.0