comparison deploy.sh @ 0:a38447a59412 draft

planemo upload for repository https://github.com/bardin-lab/readtagger/tree/master/galaxy commit d63500891dc173a7657bb9a9aabbeb6cf2ddb9e3-dirty
author mvdbeek
date Fri, 17 Feb 2017 10:54:47 -0500
parents
children f69131f584e8
comparison
equal deleted inserted replaced
-1:000000000000 0:a38447a59412
1 #!/bin/bash
2 # this script uploads galaxy tools in the current directory to the galaxy toolsheds
3 set -e
4
5 CURRENT_DIR=$(dirname $0)
6
7 echo "Deploying to Testtoolshed ..."
8 planemo shed_update -r --force_repository_creation -t testtoolshed --shed_key_from_env TTS_KEY "$CURRENT_DIR"
9
10 echo "Deploying to Toolshed ..."
11 planemo shed_update -r --force_repository_creation -t toolshed --shed_key_from_env TS_KEY $CURRENT_DIR
12
13 echo "Successfully deployed to toolsheds"
14 exit 0