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, 23 insertions, 0 deletions
diff --git a/Master/tlpkg/tlperl/bin/pip b/Master/tlpkg/tlperl/bin/pip
new file mode 100755
index 00000000000..f7f5a41df7d
--- /dev/null
+++ b/Master/tlpkg/tlperl/bin/pip
@@ -0,0 +1,23 @@
+#!/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);