Commit c3345347780c721453e88147c8d7beec9790b5b9

Authored by Marco Antonio Konopacki
1 parent a8014fb7

correção no script set_tag

Showing 1 changed file with 14 additions and 7 deletions   Show diff stats
scripts/set_tag.sh
  1 +function fetch_settag {
  2 +
  3 + git fetch --all
  4 + git checkout $1
  5 +
  6 +}
  7 +
1 8 cd ..
2 9  
3   -git checkout $1
  10 +fetch_settag $1
4 11  
5 12 cd src/wp-content/themes/participacao-tema
6 13  
7   -git checkout $1
  14 +fetch_settag $1
8 15  
9 16 cd ../pensandoodireito-tema
10 17  
11   -git checkout $1
  18 +fetch_settag $1
12 19  
13 20 cd ../marcocivil-tema
14 21  
15   -git checkout $1
  22 +fetch_settag $1
16 23  
17 24 cd ../dadospessoais-tema
18 25  
19   -git checkout $1
  26 +fetch_settag $1
20 27  
21 28 cd ../../plugins/pensandoodireito-network-functions
22 29  
23   -git checkout $1
  30 +fetch_settag $1
24 31  
25 32 cd ../wp-side-comments
26 33  
27   -git checkout $1
  34 +fetch_settag $1
28 35  
... ...