mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-22 05:20:56 +01:00
GitFetch daemon: more verbose
Summary: A smidgen more messaging about what's going on. Test Plan: Ran it, saw this: 2012-03-07 5:37:30 PM [STDO] >>> [0] <exec> $ /data/phabricator/bin/list_db_services --tier_name 'cdb.phabricator' <<< [0] <exec> 47,101 us ... >>> [9] <exec> $ mkdir -p '/var/repo' <<< [9] <exec> 41,374 us Creating new directory /var/repo/fbcode for repo FBCode >>> [10] <exec> $ git clone --origin origin 'ssh://fbcode.git.vip.facebook.com/data/gitrepos/fbcode.git' '/var/repo/fbcode' Reviewers: epriestley Reviewed By: epriestley CC: aran, epriestley Differential Revision: https://secure.phabricator.com/D1819
This commit is contained in:
parent
8b304870c4
commit
17d801a50e
1 changed files with 3 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright 2011 Facebook, Inc.
|
* Copyright 2012 Facebook, Inc.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -56,6 +56,8 @@ abstract class PhabricatorRepositoryPullLocalDaemon
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
if (!Filesystem::pathExists($local_path)) {
|
if (!Filesystem::pathExists($local_path)) {
|
||||||
|
printf("Creating new directory %s for repo %s\n",
|
||||||
|
$local_path, $repository->getName());
|
||||||
execx('mkdir -p %s', dirname($local_path));
|
execx('mkdir -p %s', dirname($local_path));
|
||||||
$this->executeCreate($repository, $local_path);
|
$this->executeCreate($repository, $local_path);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue