mirror of
https://github.com/opdavies/build-configs.git
synced 2025-01-23 02:27:33 +00:00
fix(git-hooks): make it executable
This commit is contained in:
parent
f16ccb81bb
commit
050c28901a
|
@ -55,6 +55,10 @@ final class GenerateConfigurationFiles
|
||||||
$this->filesystem->chmod("{$this->outputDir}/.githooks/pre-push", 0755);
|
$this->filesystem->chmod("{$this->outputDir}/.githooks/pre-push", 0755);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($this->filesystem->exists("{$this->outputDir}/.githooks/prepare-commit-msg")) {
|
||||||
|
$this->filesystem->chmod("{$this->outputDir}/.githooks/prepare-commit-msg", 0755);
|
||||||
|
}
|
||||||
|
|
||||||
return $next([$configurationDataDto, $filesToGenerate]);
|
return $next([$configurationDataDto, $filesToGenerate]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue