summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/bin/pip
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/bin/pip')
-rwxr-xr-xMaster/tlpkg/tlperl/bin/pip23
1 files changed, 0 insertions, 23 deletions
diff --git a/Master/tlpkg/tlperl/bin/pip b/Master/tlpkg/tlperl/bin/pip
deleted file mode 100755
index f7f5a41df7d..00000000000
--- a/Master/tlpkg/tlperl/bin/pip
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/perl
-
-use 5.00503;
-use strict;
-use pip;
-
-use vars qw{$VERSION};
-BEGIN {
- $VERSION = '1.16';
-}
-
-eval {
- pip::main( @ARGV );
-};
-
-if ( $@ ) {
- my $errstr = $@;
- $errstr =~ s/\sat line\b.+$//;
- print "Unexpected Error: $errstr\n";
- exit(255);
-}
-
-exit(0);