Commit d7b4c6b74836573cf7fc130b978e3abd2f4a64a1
1 parent
88ce7542
Exists in
master
and in
3 other branches
ajustes no script para remoção de tags
Showing
1 changed file
with
9 additions
and
9 deletions
Show diff stats
scripts/delete_tag.sh
... | ... | @@ -13,7 +13,7 @@ function delete_tag { |
13 | 13 | |
14 | 14 | git tag -d $1 |
15 | 15 | |
16 | - git push composer :refs/tags/$1 | |
16 | + git push git@github.com:pensandoodireito/$2 :refs/tags/$1 | |
17 | 17 | |
18 | 18 | git push --tags |
19 | 19 | |
... | ... | @@ -21,33 +21,33 @@ function delete_tag { |
21 | 21 | |
22 | 22 | cd .. |
23 | 23 | |
24 | -delete_tag $1 | |
24 | +delete_tag $1 participacao-sitebase | |
25 | 25 | |
26 | 26 | cd src/wp-content/themes/participacao-tema |
27 | 27 | |
28 | -delete_tag $1 | |
28 | +delete_tag $1 participacao-tema | |
29 | 29 | |
30 | 30 | cd ../pensandoodireito-tema |
31 | 31 | |
32 | -delete_tag $1 | |
32 | +delete_tag $1 pensandoodireito-tema | |
33 | 33 | |
34 | 34 | cd ../marcocivil-tema |
35 | 35 | |
36 | -delete_tag $1 | |
36 | +delete_tag $1 marcocivil-tema | |
37 | 37 | |
38 | 38 | cd ../dadospessoais-tema |
39 | 39 | |
40 | -delete_tag $1 | |
40 | +delete_tag $1 dadospessoais-tema | |
41 | 41 | |
42 | 42 | cd ../../plugins/pensandoodireito-network-functions |
43 | 43 | |
44 | -delete_tag $1 | |
44 | +delete_tag $1 pensandoodireito-network-functions | |
45 | 45 | |
46 | 46 | cd ../wp-side-comments |
47 | 47 | |
48 | -delete_tag $1 | |
48 | +delete_tag $1 wp-side-comments | |
49 | 49 | |
50 | 50 | cd ../delibera |
51 | 51 | |
52 | -delete_tag $1 | |
52 | +delete_tag $1 delibera | |
53 | 53 | ... | ... |