File: bioconda_push.sh

package info (click to toggle)
sambamba 1.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,528 kB
  • sloc: sh: 220; python: 166; ruby: 147; makefile: 103
file content (14 lines) | stat: -rw-r--r-- 481 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
RECIPES=~/github/bioconda-recipes # location of the cloned fork
REMOTE=bioconda                   # bioconda/bioconda-recipes remote

UPDATED_RECIPE=/tmp/sambamba.yaml
python3 bioconda_yaml_gen.py > $UPDATED_RECIPE
VERSION=`grep version $UPDATED_RECIPE | cut -d\' -f2`

cd $RECIPES
git checkout master
git pull $REMOTE master
git checkout -b sambamba-${VERSION}
cp $UPDATED_RECIPE recipes/sambamba/meta.yaml
git commit -am "sambamba ${VERSION}"
git push origin sambamba-${VERSION}