Skip to content

Commit 3b9518e

Browse files
author
Matthew Fisher
committed
move make client_binary to client project
1 parent 45c78fb commit 3b9518e

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
11
test_client:
22
python -m unittest discover client.tests
3-
4-
client_binary:
5-
cd client && pyinstaller deis.spec

client/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Install deis client locally through pip.
33
install:
4-
pip install .
4+
pip install .
55

66
# Remove the installed copy of the deis client through pip.
77
uninstall:
@@ -10,3 +10,6 @@ uninstall:
1010
# Clean up after setup.py droppings.
1111
clean:
1212
rm -rf build/ dist/ *.egg-info
13+
14+
client:
15+
pyinstaller deis.spec

docs/contributing/releases.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ opdemand/deis Server Repo
6666
- ``cd client && python setup.py sdist upload``
6767
- use testpypi.python.org first to ensure there aren't any problems
6868
- Create CLI binaries for Windows, Mac OS X, Debian
69-
- ``pip install pyinstaller && make client_binary``
69+
- ``pip install pyinstaller && make -C controller client``
7070
- build **deis-osx-X.Y.Z.tgz** on Mac OS X 10.8 for all Macs (10.9 uses
7171
LLVM, which makes our binary crash on earlier OS versions)
7272
- build **deis-win64-X.Y.Z.zip** on Windows 7 64-bit

0 commit comments

Comments
 (0)