diff options
author | Ludovic Courtès <ludo@gnu.org> | 2024-05-13 14:53:04 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-05-13 16:31:35 +0200 |
commit | 723d45866f11b1aceb23d9d3d66c395ea9bf257b (patch) | |
tree | 00e79ea7f2d3b90e27ef6a5e1d0a9207d5f3d772 /tests | |
parent | efbdfe1900efa1088fd84ecf88b89a3e9e9ac0a3 (diff) | |
download | guix-723d45866f11b1aceb23d9d3d66c395ea9bf257b.tar guix-723d45866f11b1aceb23d9d3d66c395ea9bf257b.tar.gz |
tests: Remove interference from the user’s Git config.
* tests/guix-download.sh: Set ‘GIT_CONFIG_GLOBAL’ and
‘GIT_CONFIG_SYSTEM’.
Reported-by: Ashvith Shetty <ashvithshetty10@gmail.com>
Change-Id: Ibe14d23db2e8af58b85c78248997c6dde78e11e0
Diffstat (limited to 'tests')
-rw-r--r-- | tests/guix-download.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/guix-download.sh b/tests/guix-download.sh index d4cd2ea6b9..5195cc2867 100644 --- a/tests/guix-download.sh +++ b/tests/guix-download.sh @@ -1,5 +1,5 @@ # GNU Guix --- Functional package management for GNU -# Copyright © 2012, 2015, 2016 Ludovic Courtès <ludo@gnu.org> +# Copyright © 2012, 2015-2016, 2024 Ludovic Courtès <ludo@gnu.org> # # This file is part of GNU Guix. # @@ -52,6 +52,11 @@ guix download "file:///does-not-exist" "file://$abs_top_srcdir/README" && false # Test git support with local repository. # First, create a dummy git repo in the temporary directory. ( + # Avoid interference with user config. + GIT_CONFIG_GLOBAL=/dev/null + GIT_CONFIG_SYSTEM=/dev/null + export GIT_CONFIG_SYSTEM GIT_CONFIG_GLOBAL + cd $test_git_repo git init touch test |