mirror of https://github.com/docker/compose.git
Merge pull request #2389 from hypriot/use-uname-for-target
Use uname to build target name for different platforms
This commit is contained in:
commit
dd1a2b36fa
|
@ -2,7 +2,7 @@
|
|||
|
||||
set -ex
|
||||
|
||||
TARGET=dist/docker-compose-Linux-x86_64
|
||||
TARGET=dist/docker-compose-$(uname -s)-$(uname -m)
|
||||
VENV=/code/.tox/py27
|
||||
|
||||
mkdir -p `pwd`/dist
|
||||
|
|
Loading…
Reference in New Issue