diff options
author | Arun Isaac | 2022-10-31 00:13:49 +0530 |
---|---|---|
committer | Arun Isaac | 2022-10-31 00:14:17 +0530 |
commit | 9a07e04f40b2e5273c0022cadc4fcbb06195ed82 (patch) | |
tree | 3a52e1050f7d678f05abab008afa4593dad1a7bb | |
parent | 88603040bb59e7f53b9cd079d25d5f1499808f78 (diff) | |
download | gn-machines-9a07e04f40b2e5273c0022cadc4fcbb06195ed82.tar.gz |
Ungexp gn2 and gn3 repositories correctly.
* genenetwork-development.scm (genenetwork2-tests): Ungexp
gn2-repository and gn3-repository correctly.
-rw-r--r-- | genenetwork-development.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/genenetwork-development.scm b/genenetwork-development.scm index 3d88bed..46a2b73 100644 --- a/genenetwork-development.scm +++ b/genenetwork-development.scm @@ -119,7 +119,7 @@ described by CONFIG, a <genenetwork-configuration> object. TEST-COMMAND is a list of strings specifying the command to be executed." (match-record config <genenetwork-configuration> - (gn3-port genotype-files) + (gn2-repository gn3-repository gn3-port genotype-files) (with-imported-modules '((guix build utils)) (with-packages (list bash coreutils git-minimal nss-certs) #~(begin @@ -136,10 +136,10 @@ executed." (invoke "git" "log" "--max-count" "1") (hline)) - (invoke "git" "clone" "--depth" "1" gn3-repository) + (invoke "git" "clone" "--depth" "1" #$gn3-repository) (with-directory-excursion "genenetwork3" (show-head-commit)) - (invoke "git" "clone" "--depth" "1" gn2-repository) + (invoke "git" "clone" "--depth" "1" #$gn2-repository) (with-directory-excursion "genenetwork2" (show-head-commit)) ;; This is a dummy SERVER_PORT to placate |