If necessary, create git repository on first http access
This commit is contained in:
parent
be95050a4b
commit
a47ec0df0a
@ -952,6 +952,19 @@ class IDF_Scm_Git extends IDF_Scm
|
|||||||
|
|
||||||
$path = $match[2];
|
$path = $match[2];
|
||||||
|
|
||||||
|
if (!file_exists($this->repo)) {
|
||||||
|
mkdir($this->repo, 0750, true);
|
||||||
|
$out = array();
|
||||||
|
$res = 0;
|
||||||
|
exec(sprintf(Pluf::f('idf_exec_cmd_prefix', '').
|
||||||
|
Pluf::f('git_path', 'git').' --git-dir=%s init', escapeshellarg($this->repo)),
|
||||||
|
$out, $res);
|
||||||
|
if ($res != 0) {
|
||||||
|
Pluf_Log::error(array('IDF_Scm_Git::repository', $res, $this->repo));
|
||||||
|
throw new Exception(sprintf('Init repository error, exit status %d.', $res));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// update files before delivering them
|
// update files before delivering them
|
||||||
if (($path == 'objects/info/pack') || ($path == 'info/refs')) {
|
if (($path == 'objects/info/pack') || ($path == 'info/refs')) {
|
||||||
$cmd = sprintf(Pluf::f('idf_exec_cmd_prefix', '').
|
$cmd = sprintf(Pluf::f('idf_exec_cmd_prefix', '').
|
||||||
|
Loading…
Reference in New Issue
Block a user