mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
11 lines
257 B
Bash
Executable File
11 lines
257 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
rm -rf venv
|
|
virtualenv venv
|
|
venv/bin/pip install -r requirements.txt
|
|
venv/bin/pip install -r requirements-dev.txt
|
|
venv/bin/pip install .
|
|
venv/bin/pyinstaller -F bin/fig
|
|
mv dist/fig dist/fig-Darwin-x86_64
|
|
dist/fig-Darwin-x86_64 --version
|