From 518984b70d1fcfa30f304f319d9aa91971ddebe0 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Tue, 14 Aug 2012 11:19:15 +0200 Subject: [PATCH] Output error if a local filesystem VCS repo points to a non-existing dir --- src/Composer/Repository/Vcs/GitDriver.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Composer/Repository/Vcs/GitDriver.php b/src/Composer/Repository/Vcs/GitDriver.php index dca7366e2..9c1345e9d 100644 --- a/src/Composer/Repository/Vcs/GitDriver.php +++ b/src/Composer/Repository/Vcs/GitDriver.php @@ -191,6 +191,10 @@ class GitDriver extends VcsDriver // local filesystem if (static::isLocalUrl($url)) { + if (!is_dir($url)) { + throw new \RuntimeException('Directory does not exist: '.$url); + } + $process = new ProcessExecutor(); $url = str_replace('file://', '', $url); // check whether there is a git repo in that path