summaryrefslogtreecommitdiff
path: root/t/t7519
diff options
context:
space:
mode:
authorAlex Vandiver <alexmv@dropbox.com>2017-11-09 19:58:09 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-11-10 05:04:50 (GMT)
commit6f1dc21d983a495877c8054d41d9b634e234ccc4 (patch)
tree66f54dd50739f5367026e6ced8bd4ba091dd04c9 /t/t7519
parentba1b9caca69909b3c048bda1bbfab4fefb070bff (diff)
downloadgit-6f1dc21d983a495877c8054d41d9b634e234ccc4.zip
git-6f1dc21d983a495877c8054d41d9b634e234ccc4.tar.gz
git-6f1dc21d983a495877c8054d41d9b634e234ccc4.tar.bz2
fsmonitor: read from getcwd(), not the PWD environment variable
Though the process has chdir'd to the root of the working tree, the PWD environment variable is only guaranteed to be updated accordingly if a shell is involved -- which is not guaranteed to be the case. That is, if `/usr/bin/perl` is a binary, $ENV{PWD} is unchanged from whatever spawned `git` -- if `/usr/bin/perl` is a trivial shell wrapper to the real `perl`, `$ENV{PWD}` will have been updated to the root of the working copy. Update to read from the Cwd module using the `getcwd` syscall, not the PWD environment variable. The Cygwin case is left unchanged, as it necessarily _does_ go through a shell. Signed-off-by: Alex Vandiver <alexmv@dropbox.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7519')
-rwxr-xr-xt/t7519/fsmonitor-watchman3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/t7519/fsmonitor-watchman b/t/t7519/fsmonitor-watchman
index a3e30bf..5fe72ce 100755
--- a/t/t7519/fsmonitor-watchman
+++ b/t/t7519/fsmonitor-watchman
@@ -41,7 +41,8 @@ if ($system =~ m/^MSYS_NT/ || $system =~ m/^MINGW/) {
$git_work_tree =~ s/[\r\n]+//g;
$git_work_tree =~ s,\\,/,g;
} else {
- $git_work_tree = $ENV{'PWD'};
+ require Cwd;
+ $git_work_tree = Cwd::cwd();
}
my $retry = 1;