https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 61e6fd11424a9036573db2bf3ef9a8bee9d6b19a authored by Nicola Soranzo on 12 December 2019, 17:43:26 UTC
Merge branch 'release_16.10' into release_17.01
Tip revision: 61e6fd1
create_db.sh
#!/bin/sh

: ${GALAXY_VIRTUAL_ENV:=.venv}

if [ -d "$GALAXY_VIRTUAL_ENV" ];
then
    printf "Activating virtualenv at $GALAXY_VIRTUAL_ENV\n"
    . "$GALAXY_VIRTUAL_ENV/bin/activate"
fi

cd `dirname $0`
python ./scripts/create_db.py $@
back to top