Skip to content

Commit

Permalink
Develop (#19)
Browse files Browse the repository at this point in the history
* Hotfix for a supervisord bug

The file supervisord.conf contained a line that referenced the wrong file path for spinup.sh. This hotfix fixes that. Fixes #18.
  • Loading branch information
winsmith authored Mar 15, 2017
1 parent c6c23bc commit 8fa6af8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion jonah/jonah.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ def backspace(self, string_to_escape):

# User Actions #####################################################################################################


def check_docker(self):
"""Check that the Docker executable is available on the user's system"""
try:
Expand Down
2 changes: 1 addition & 1 deletion jonah/support_files/jonah/supervisord.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
nodaemon=true

[program:initialize]
command=/bin/bash /code/deployment/spinup.sh
command=/bin/bash /code/jonah/spinup.sh
exitcodes=0
startsecs=0
priority=10
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='1.0.1',
version='1.0.2',

description='A way to pack your Django Development, Deployment and Testing into Docker',
long_description=long_description,
Expand Down

0 comments on commit 8fa6af8

Please sign in to comment.