Skip to content
Snippets Groups Projects
Commit 66fd4346 authored by John Chilton's avatar John Chilton
Browse files

Make it easier to sed setup.py to build lib w/starforge...

parent ce9d4f9e
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,7 @@ _release-test-artifacts:
release-test-artifacts: dist _release-test-artifacts
_release-aritfacts: release-test-artifacts
_release-aritfacts:
@while [ -z "$$CONTINUE" ]; do \
read -r -p "Have you executed release-test and reviewed results? [y/N]: " CONTINUE; \
done ; \
......
......@@ -17,7 +17,8 @@ except ImportError:
# Set environment variable to 1 to build as library for Galaxy instead
# of as stand-alone app.
PULSAR_GALAXY_LIB = os.environ.get("PULSAR_GALAXY_LIB", "0") == "1"
DEFAULT_PULSAR_GALAXY_LIB = 0
PULSAR_GALAXY_LIB = os.environ.get("PULSAR_GALAXY_LIB", "%d" % DEFAULT_PULSAR_GALAXY_LIB) == "1"
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment