Skip to content
This repository has been archived by the owner on Sep 25, 2020. It is now read-only.

Commit

Permalink
Run translation commands in quiet mode
Browse files Browse the repository at this point in the history
  • Loading branch information
ocean90 committed Dec 17, 2018
1 parent c67c732 commit 22e5226
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/capistrano/wearerequired/tasks/wordpress.rake
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ namespace :wordpress do

on roles(:app) do
within release_path do
execute :wp, "language core install #{languages} 2> /dev/null"
execute :wp, "language plugin install --all #{languages} 2> /dev/null"
execute :wp, "language theme install --all #{languages} 2> /dev/null"
execute :wp, "language core install #{languages} --quiet"
execute :wp, "language plugin install --all #{languages} --quiet"
execute :wp, "language theme install --all #{languages} --quiet"
end
end
end
Expand All @@ -26,9 +26,9 @@ namespace :wordpress do

on roles(:app) do
within release_path do
execute :wp, "language core update"
execute :wp, "language plugin update --all"
execute :wp, "language theme update --all"
execute :wp, "language core update --quiet"
execute :wp, "language plugin update --all --quiet"
execute :wp, "language theme update --all --quiet"
end
end
end
Expand Down

0 comments on commit 22e5226

Please sign in to comment.