diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-07-29 09:28:48 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-07-29 09:28:48 -0700 |
| commit | f5dc13f52d92a60cbf0a44a0a1be6de2fbee180f (patch) | |
| tree | c8f0fc52262bcd0db773d0a74becae533ad8bf9b | |
| parent | Merge branch 'cc/t9350-cleanup' into next (diff) | |
| parent | t7510: use $PWD instead of $(pwd) inside PATH (diff) | |
| download | git-f5dc13f52d92a60cbf0a44a0a1be6de2fbee180f.tar.gz git-f5dc13f52d92a60cbf0a44a0a1be6de2fbee180f.zip | |
Merge branch 'jb/t7510-gpg-program-path' into next
A new test to ensure that a recent change will keep working.
* jb/t7510-gpg-program-path:
t7510: use $PWD instead of $(pwd) inside PATH
| -rwxr-xr-x | t/t7510-signed-commit.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t7510-signed-commit.sh b/t/t7510-signed-commit.sh index 95d2ebe277..1201c85ba6 100755 --- a/t/t7510-signed-commit.sh +++ b/t/t7510-signed-commit.sh @@ -458,7 +458,7 @@ test_expect_success 'custom `gpg.program`' ' # `gpg.program` does not specify an absolute path, it should find a program in `$PATH` test_config gpg.program "fake-gpg" && - env PATH="$(pwd):$PATH" \ + env PATH="$PWD:$PATH" \ git commit -S --allow-empty -m signed-commit ' |
