Skip to content
This repository has been archived by the owner on Aug 13, 2018. It is now read-only.

Commit

Permalink
Merge pull request #28 from blaze/fix/source_builds
Browse files Browse the repository at this point in the history
Fix/source builds
  • Loading branch information
quasiben committed Feb 1, 2016
2 parents 6ec09cf + 0b8bfe1 commit 65768f7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
@@ -1,5 +1,6 @@
recursive-include knit *.py
recursive-include docs *.rst
prune knit/tmp_conda

include LICENSE
include setup.py
Expand Down
2 changes: 2 additions & 0 deletions continuous_integration/docker-compose.yml
Expand Up @@ -10,3 +10,5 @@ knit:
working_dir: /knit
volumes:
- ../:/knit
environment:
- JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64/jre
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -13,7 +13,7 @@

if not 'nojava' in sys.argv:
#JAVA_HOME necessary for building
if os.environ.get("JAVA_HOME"):
if not os.environ.get("JAVA_HOME"):
print("PLEASE SET JAVA_HOME")
sys.exit(1)

Expand Down

0 comments on commit 65768f7

Please sign in to comment.