Mercurial > repos > mvdbeek > bam_readtagger
comparison deploy.sh @ 0:92415330ad3e 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:53:53 -0500 |
parents | |
children | 815e4eea0e1d |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:92415330ad3e |
---|---|
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 --shed_key_from_env TS_KEY $CURRENT_DIR | |
12 | |
13 echo "Successfully deployed to toolsheds" | |
14 exit 0 |