We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5892ec8 commit 584a164Copy full SHA for 584a164
Repository/Vcs/GitDriver.php
@@ -49,7 +49,7 @@ public function initialize()
49
50
$skipSync = false;
51
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) . '/';
+ $localUrl = $this->config->get('cache-vcs-dir').'/'.preg_replace('{[^a-z0-9.]}i', '-', $this->url).'/';
53
// check if local copy exists and if it is a git repository and that modification time is within threshold
54
if (is_dir($localUrl) && is_file($localUrl.'/config') && filemtime($localUrl) > strtotime('-'.$skip)) {
55
$skipSync = true;
0 commit comments