commit/galaxy-central: davebgx: Fetch eggs after initializing sample files, per John Chilton's comment.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/4bcc1949021b/ Changeset: 4bcc1949021b User: davebgx Date: 2014-06-13 23:32:51 Summary: Fetch eggs after initializing sample files, per John Chilton's comment. Affected #: 1 file diff -r fb4ac45f7827a92fa637899fb5da43a350bc857b -r 4bcc1949021ba358ea3e1dbf624d0014e8fab525 scripts/common_startup.sh --- a/scripts/common_startup.sh +++ b/scripts/common_startup.sh @@ -8,19 +8,6 @@ [ "$arg" = "--stop-daemon" ] && FETCH_EGGS=0 [ "$arg" = "--skip-samples" ] && COPY_SAMPLE_FILES=0 done -if [ $FETCH_EGGS -eq 1 ]; then - python ./scripts/check_eggs.py -q - if [ $? -ne 0 ]; then - echo "Some eggs are out of date, attempting to fetch..." - python ./scripts/fetch_eggs.py - if [ $? -eq 0 ]; then - echo "Fetch successful." - else - echo "Fetch failed." - exit 1 - fi - fi -fi SAMPLES=" tool_shed_wsgi.ini.sample @@ -60,4 +47,17 @@ fi done fi - + +if [ $FETCH_EGGS -eq 1 ]; then + python ./scripts/check_eggs.py -q + if [ $? -ne 0 ]; then + echo "Some eggs are out of date, attempting to fetch..." + python ./scripts/fetch_eggs.py + if [ $? -eq 0 ]; then + echo "Fetch successful." + else + echo "Fetch failed." + exit 1 + fi + fi +fi Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org