10 lines
195 B
Bash
Executable file
10 lines
195 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
mkdir -p `pwd`/dist
|
|
chmod 777 `pwd`/dist
|
|
|
|
pyinstaller -F bin/docker-compose
|
|
mv dist/docker-compose dist/docker-compose-Linux-x86_64
|
|
dist/docker-compose-Linux-x86_64 version
|