Changeset 1172:c591911a6497 for run.sh
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
run.sh
r1125 r1172 1 1 #!/bin/sh 2 2 3 . ./scripts/get_python.sh 4 . ./setup_paths.sh 5 6 # Create directories 7 CREATE_DIRS=" 8 $UNIVERSE_HOME/database/$CREATE_DIR/files 9 $UNIVERSE_HOME/database/$CREATE_DIR/tmp 10 " 11 12 for CREATE_DIR in $CREATE_DIRS; do 13 if [ ! -d $CREATE_DIR -o ! -h $CREATE_DIR ]; then 14 mkdir -p $CREATE_DIR 15 fi 16 done 17 18 $GALAXY_PYTHON ./scripts/paster.py serve universe_wsgi.ini $@ 3 cd `dirname $0` 4 python -ES ./scripts/paster.py serve universe_wsgi.ini $@