diff options
author | Andreas Gohr <andi@splitbrain.org> | 2014-02-14 10:22:25 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2014-02-14 10:22:25 +0100 |
commit | b0c7084fa9305409ef9717c5c64f9bcd31f8923c (patch) | |
tree | 5892a519820424c1fa2a1ffbc8022426443e5eb6 /bin/gittool.php | |
parent | 68cf024bfcff59b9a812cfcc53e3520a28c14ead (diff) | |
download | rpg-b0c7084fa9305409ef9717c5c64f9bcd31f8923c.tar.gz rpg-b0c7084fa9305409ef9717c5c64f9bcd31f8923c.tar.bz2 |
always fullpath repo dirs
Diffstat (limited to 'bin/gittool.php')
-rwxr-xr-x | bin/gittool.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gittool.php b/bin/gittool.php index 23e8552b4..f9f68ac94 100755 --- a/bin/gittool.php +++ b/bin/gittool.php @@ -260,7 +260,7 @@ EOF; } else { $this->msg_success('Found '.count($data).' .git directories'); } - $data = array_map('dirname', $data); + $data = array_map('fullpath', array_map('dirname', $data)); return $data; } |