Skip to content

Commit

Permalink
move make client_binary to client project
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Fisher committed Mar 18, 2014
1 parent 45c78fb commit 3b9518e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
3 changes: 0 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
test_client:
python -m unittest discover client.tests

client_binary:
cd client && pyinstaller deis.spec
5 changes: 4 additions & 1 deletion client/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# Install deis client locally through pip.
install:
pip install .
pip install .

# Remove the installed copy of the deis client through pip.
uninstall:
Expand All @@ -10,3 +10,6 @@ uninstall:
# Clean up after setup.py droppings.
clean:
rm -rf build/ dist/ *.egg-info

client:
pyinstaller deis.spec
2 changes: 1 addition & 1 deletion docs/contributing/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ opdemand/deis Server Repo
- ``cd client && python setup.py sdist upload``
- use testpypi.python.org first to ensure there aren't any problems
- Create CLI binaries for Windows, Mac OS X, Debian
- ``pip install pyinstaller && make client_binary``
- ``pip install pyinstaller && make -C controller client``
- build **deis-osx-X.Y.Z.tgz** on Mac OS X 10.8 for all Macs (10.9 uses
LLVM, which makes our binary crash on earlier OS versions)
- build **deis-win64-X.Y.Z.zip** on Windows 7 64-bit
Expand Down

0 comments on commit 3b9518e

Please sign in to comment.