Commit 66c00c3b335e5b26ed83a0bed2f5f0340fa3f155
1 parent
ebd2b1b9
Exists in
master
and in
28 other branches
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 | 50 | # db:migrate always changes this |
51 | 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 | 58 | upgrade_database(){ | ... | ... |