From 849f4eda56c8bfa20d9640c79e9a721996bf0c85 Mon Sep 17 00:00:00 2001 From: Daniel Karl Date: Wed, 8 Aug 2018 16:01:58 +0200 Subject: [PATCH] Using cwd for 2nd process-execution (auth) in HgUtils --- src/Composer/Util/Hg.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Util/Hg.php b/src/Composer/Util/Hg.php index 48d0b3687..8cf6241a6 100644 --- a/src/Composer/Util/Hg.php +++ b/src/Composer/Util/Hg.php @@ -60,7 +60,7 @@ class Hg $command = call_user_func($commandCallable, $authenticatedUrl); - if (0 === $this->process->execute($command)) { + if (0 === $this->process->execute($command, $ignoredOutput, $cwd)) { return; }