Commit 66c00c3b335e5b26ed83a0bed2f5f0340fa3f155

Authored by Antonio Terceiro
1 parent ebd2b1b9

Silencing code upgrade

That makes it easier to follow the upgrade visually
Showing 1 changed file with 3 additions and 2 deletions   Show diff stats
script/git-upgrade
@@ -50,8 +50,9 @@ upgrade_code(){ @@ -50,8 +50,9 @@ upgrade_code(){
50 # db:migrate always changes this 50 # db:migrate always changes this
51 git checkout db/schema.rb 51 git checkout db/schema.rb
52 52
53 - git pull  
54 - rake makemo 53 + git pull --quiet
  54 +
  55 + rake makemo 2>/dev/null || (echo "Translations compilation failed; run manually to check"; false)
55 } 56 }
56 57
57 upgrade_database(){ 58 upgrade_database(){