aboutsummaryrefslogtreecommitdiffstats
path: root/lib/LXRng/Repo/Git.pm
diff options
context:
space:
mode:
authorArne Georg Gleditsch <argggh@pelargir.(none)>2008-07-08 15:24:07 +0200
committerArne Georg Gleditsch <argggh@pelargir.(none)>2008-07-08 15:24:07 +0200
commit7ee74cd1dd28ee902582e71cf8d3ebddd06c0599 (patch)
treea749c72ca3b717b46ff98b8b4bc5b99cda9945cf /lib/LXRng/Repo/Git.pm
parenta25f8442450d7e9fb188a979ab0897cb86e9d84f (diff)
Better support for whitespace in filenames.
Diffstat (limited to 'lib/LXRng/Repo/Git.pm')
-rw-r--r--lib/LXRng/Repo/Git.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/LXRng/Repo/Git.pm b/lib/LXRng/Repo/Git.pm
index 9e03f83..7407ca0 100644
--- a/lib/LXRng/Repo/Git.pm
+++ b/lib/LXRng/Repo/Git.pm
@@ -127,7 +127,7 @@ sub node {
else {
my $git = $self->_git_cmd('ls-tree', $release, $path);
my ($mode, $gitpath);
- ($mode, $type, $rev, $gitpath) = split(" ", <$git>);
+ ($mode, $type, $rev, $gitpath) = split(" ", <$git>, 4);
}
if ($type eq 'tree') {