mirror of https://github.com/docker/compose.git
14 lines
354 B
Bash
Executable File
14 lines
354 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
PATH="/usr/local/bin:$PATH"
|
|
|
|
rm -rf venv
|
|
virtualenv -p /usr/local/bin/python venv
|
|
venv/bin/pip install -r requirements.txt
|
|
venv/bin/pip install -r requirements-build.txt
|
|
venv/bin/pip install .
|
|
venv/bin/pyinstaller docker-compose.spec
|
|
mv dist/docker-compose dist/docker-compose-Darwin-x86_64
|
|
dist/docker-compose-Darwin-x86_64 version
|