9 lines
130 B
Bash
9 lines
130 B
Bash
|
#!/bin/sh
|
||
|
set -a
|
||
|
PIP_DISABLE_PIP_VERSION_CHECK=1
|
||
|
PIP_NO_CACHE_DIR=1
|
||
|
PIP_ROOT_USER_ACTION=ignore
|
||
|
PIP_NO_COMPILE=1
|
||
|
set +a
|
||
|
exec "$@"
|