Revision 82b482b55d1bad1e5a2de947b5eefbb11e4ffba8 authored by John Davis on 20 June 2024, 16:29:52 UTC, committed by John Davis on 20 June 2024, 16:29:52 UTC
1 parent 25827fb
Raw File
manage_toolshed_db.sh
#!/bin/sh

#######
# Use this script to manage Tool Shed database migrations.
# For help, run `sh manage_db.sh -h`. 
# For detailed help, see documentation at https://docs.galaxyproject.org/en/master/admin/db_migration.html
#######

cd "$(dirname "$0")" || exit

. ./scripts/common_startup_functions.sh

setup_python

python ./scripts/toolshed_db.py "$@"
back to top