diff options
Diffstat (limited to 'Master/tlpkg/tlperl.straw/bin/pip')
-rwxr-xr-x | Master/tlpkg/tlperl.straw/bin/pip | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Master/tlpkg/tlperl.straw/bin/pip b/Master/tlpkg/tlperl.straw/bin/pip new file mode 100755 index 00000000000..f7f5a41df7d --- /dev/null +++ b/Master/tlpkg/tlperl.straw/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); |