diff options
-rw-r--r-- | genenetwork-development.scm | 2 | ||||
-rw-r--r-- | genenetwork/development-helper.scm | 6 |
2 files changed, 1 insertions, 7 deletions
diff --git a/genenetwork-development.scm b/genenetwork-development.scm index 4ef09ca..36c1f50 100644 --- a/genenetwork-development.scm +++ b/genenetwork-development.scm @@ -638,7 +638,7 @@ command to be executed." tissue-website-gexp) source-checkout #$(profile - (content (packages->manifest (list git-minimal tissue))) + (content (packages->manifest (list tissue))) (allow-collisions? #t))))) #:guix-daemon-uri %guix-daemon-uri #:deep-clone? #t))))) diff --git a/genenetwork/development-helper.scm b/genenetwork/development-helper.scm index d2d905b..e8364ef 100644 --- a/genenetwork/development-helper.scm +++ b/genenetwork/development-helper.scm @@ -156,10 +156,4 @@ SOURCE. PROFILE is a profile with necessary dependencies." (use-modules (guix build utils)) (chdir #$source) - ;; Set HOME so that we can write to ~/.gitconfig. - (setenv "HOME" "/tmp") - ;; The source directory is owned by root, and not the - ;; laminar user. So, we need to reassure git that it is - ;; safe. - (invoke "git" "config" "--global" "--add" "safe.directory" #$source) (invoke "tissue" "web" #$output))))) |