mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
14 lines
227 B
Bash
Executable File
14 lines
227 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test -d ${VENV_DIR:-./.release-venv}; then
|
|
true
|
|
else
|
|
./script/release/setup-venv.sh
|
|
fi
|
|
|
|
if test -z "$*"; then
|
|
args="--help"
|
|
fi
|
|
|
|
${VENV_DIR:-./.release-venv}/bin/python ./script/release/release.py "$@"
|