Commit b4c48d499e67d31ab0ed96df5870356344634f5b
Committed by
Victor Costa
1 parent
58c55ebb
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 | ... | ... |