9 lines
175 B
Bash
9 lines
175 B
Bash
|
#!/bin/bash
|
||
|
# -*- mode: sh; tab-width: 8; coding: utf-8-unix -*-
|
||
|
|
||
|
shopt -s nullglob || { ERROR use bash ; exit 1 ; }
|
||
|
ROLE=base
|
||
|
|
||
|
export PYVER=2
|
||
|
exec /usr/local/bin/pip.sh "$@"
|