Skip to content

Commit

Permalink
fix bug with executing git clone - fixes #47
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeroen-G committed May 12, 2018
1 parent c78d678 commit 6834de0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/GitPackage.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public function handle()

// Clone the repository
$this->info('Cloning repository...');
exec("git clone $source $this->conveyor->packagePath()");
exec("git clone $source ".$this->conveyor->packagePath());
$this->makeProgress();

// Composer dump-autoload to identify new service provider
Expand Down

0 comments on commit 6834de0

Please sign in to comment.