Skip to content

Commit 584a164

Browse files
Fix concat space
1 parent 5892ec8 commit 584a164

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Repository/Vcs/GitDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function initialize()
4949

5050
$skipSync = false;
5151
if (null !== ($skip = $arm->getConfig()->get('git-skip-update'))) {
52-
$localUrl = $this->config->get('cache-vcs-dir') . '/' . preg_replace('{[^a-z0-9.]}i', '-', $this->url) . '/';
52+
$localUrl = $this->config->get('cache-vcs-dir').'/'.preg_replace('{[^a-z0-9.]}i', '-', $this->url).'/';
5353
// check if local copy exists and if it is a git repository and that modification time is within threshold
5454
if (is_dir($localUrl) && is_file($localUrl.'/config') && filemtime($localUrl) > strtotime('-'.$skip)) {
5555
$skipSync = true;

0 commit comments

Comments
 (0)