diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2023-01-11 22:02:28 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-11 22:02:28 +0300 |
commit | 74dd2710dc77b85d6ad72c4534f4c7d7f67b86b2 (patch) | |
tree | 678fbd7d7d1cee3e3d53d0f4f0a66c6273bb8c11 /test | |
parent | e67f4dc0fd053d7bac56a8c802b3a1af68da5bf6 (diff) |
Git: Use sysconfdir=/etc for git built from source (#395)
* Git: Adds a new 'addGitConfigSymlink' option
* Use sysconfdir
Diffstat (limited to 'test')
-rw-r--r-- | test/git/install_git_from_src.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/git/install_git_from_src.sh b/test/git/install_git_from_src.sh index 4bdcf30..c355224 100644 --- a/test/git/install_git_from_src.sh +++ b/test/git/install_git_from_src.sh @@ -12,5 +12,13 @@ cd /tmp && git clone https://github.com/devcontainers/feature-starter.git cd feature-starter check "perl" bash -c "git -c grep.patternType=perl grep -q 'a.+b'" +check "git-location" bash -c "which git | grep /usr/local/bin/git" + +check "set-git-config-user-name" bash -c "git config --system user.name devcontainers" +check "gitconfig-file-location" bash -c "ls /etc/gitconfig" +check "gitconfig-contains-name" bash -c "cat /etc/gitconfig | grep 'name = devcontainers'" + +check "usr-local-etc-config-does-not-exist" test ! -f "/usr/local/etc/gitconfig" + # Report result reportResults |