Merge pull request #2389 from hypriot/use-uname-for-target

Use uname to build target name for different platforms
This commit is contained in:
Joffrey F 2015-11-19 10:36:33 -08:00
commit dd1a2b36fa
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
set -ex set -ex
TARGET=dist/docker-compose-Linux-x86_64 TARGET=dist/docker-compose-$(uname -s)-$(uname -m)
VENV=/code/.tox/py27 VENV=/code/.tox/py27
mkdir -p `pwd`/dist mkdir -p `pwd`/dist