Commit b8a6532d4dd79cfe48a9f8939ae534d91a0ac8bd
1 parent
24887ce1
Exists in
master
and in
3 other branches
Atualizando scripts de tags para adicionar o repositório do delibera
Showing
2 changed files
with
11 additions
and
3 deletions
Show diff stats
scripts/generate_tag.sh
1 | -#!/bin/sh | |
1 | +#!/bin/bash | |
2 | 2 | |
3 | 3 | if [ $# -eq 0 ]; then |
4 | 4 | echo "No arguments supplied, exiting script" |
... | ... | @@ -7,6 +7,7 @@ if [ $# -eq 0 ]; then |
7 | 7 | fi |
8 | 8 | |
9 | 9 | function gerar_tag_master { |
10 | + | |
10 | 11 | branch=$(git branch | sed -n -e 's/^\* \(.*\)/\1/p') |
11 | 12 | |
12 | 13 | git stash |
... | ... | @@ -54,5 +55,9 @@ gerar_tag_master pensandoodireito-network-functions $1 |
54 | 55 | |
55 | 56 | cd ../wp-side-comments |
56 | 57 | |
57 | -gerar_tag_master wp-side-comments $1 | |
58 | +gerar_tag_master wp-side-comments $1 | |
59 | + | |
60 | +cd ../delibera | |
61 | + | |
62 | +gerar_tag_master delibera $1 | |
58 | 63 | ... | ... |