Commit 1f2c568408fc438485eff364bd1bc4660cb4185f
Committed by
Leandro Santos
1 parent
d5cc7008
Exists in
theme-brasil-digital-from-staging
and in
9 other branches
quick-start: compile translations only once
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
script/quick-start
... | ... | @@ -114,7 +114,9 @@ else |
114 | 114 | rails runner 'Environment.default.enable("skip_new_user_email_confirmation")' |
115 | 115 | fi |
116 | 116 | |
117 | -run quiet rake noosfero:translations:compile | |
117 | +if [ ! -d locale ]; then | |
118 | + run quiet rake noosfero:translations:compile | |
119 | +fi | |
118 | 120 | |
119 | 121 | # create needed directory |
120 | 122 | mkdir -p tmp/pids | ... | ... |