Skip to content
Permalink
2020-10-01
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
14 lines (11 sloc) 334 Bytes
# Install an entire topic to a Galaxy instance
#
# usages: install_topic_requirements.sh <path to topic> <galaxy url> <api key>
topic=$1
galaxy_url=$2
api_key=$3
for tutorial in ${topic}/tutorials/*
do
echo "Installing Tutorial ${tutorial}"
`dirname $0`/install_tutorial_requirements.sh $tutorial $galaxy_url $api_key
done