diff options
author | Arne Georg Gleditsch <argggh@pelargir.(none)> | 2008-07-08 15:24:07 +0200 |
---|---|---|
committer | Arne Georg Gleditsch <argggh@pelargir.(none)> | 2008-07-08 15:24:07 +0200 |
commit | 7ee74cd1dd28ee902582e71cf8d3ebddd06c0599 (patch) | |
tree | a749c72ca3b717b46ff98b8b4bc5b99cda9945cf /lib/LXRng/Repo/Git/Directory.pm | |
parent | a25f8442450d7e9fb188a979ab0897cb86e9d84f (diff) |
Better support for whitespace in filenames.
Diffstat (limited to 'lib/LXRng/Repo/Git/Directory.pm')
-rw-r--r-- | lib/LXRng/Repo/Git/Directory.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/LXRng/Repo/Git/Directory.pm b/lib/LXRng/Repo/Git/Directory.pm index 6b24214..cf46915 100644 --- a/lib/LXRng/Repo/Git/Directory.pm +++ b/lib/LXRng/Repo/Git/Directory.pm @@ -60,7 +60,7 @@ sub contents { my (@dirs, @files); while (<$git>) { chomp; - my ($mode, $type, $ref, $node) = split(" ", $_); + my ($mode, $type, $ref, $node) = split(" ", $_, 4); if ($type eq 'tree') { push(@dirs, LXRng::Repo::Git::Directory->new($$self{'repo'}, $prefix.$node, |