about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-03-03 10:11:20 +0000
committerEric Wong <e@yhbt.net>2020-03-04 10:47:46 +0000
commit64a5e4f9b5cda6891d3dbd719d8a010da487bfc3 (patch)
treed8fead93760a0b36e26e16ab9b719d2e4bdba48a
parent4de32cbee1bab278a15cd83e7c620de0d7777be5 (diff)
downloadpublic-inbox-64a5e4f9b5cda6891d3dbd719d8a010da487bfc3.tar.gz
We rely on spawn/popen_rd for redirects, nowadays.
-rw-r--r--lib/PublicInbox/Git.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/Git.pm b/lib/PublicInbox/Git.pm
index 7eaaeb8b..9c96b3f0 100644
--- a/lib/PublicInbox/Git.pm
+++ b/lib/PublicInbox/Git.pm
@@ -9,7 +9,7 @@
 package PublicInbox::Git;
 use strict;
 use warnings;
-use POSIX qw(dup2);
+use POSIX ();
 use IO::Handle; # ->autoflush
 use File::Glob qw(bsd_glob GLOB_NOSORT);
 use PublicInbox::Spawn qw(popen_rd);