From a6187060b2eb6a199ca8ed93845d0d3ca3d9f8c0 Mon Sep 17 00:00:00 2001 From: Andrew Janke Date: Tue, 1 Dec 2015 09:02:46 -0500 Subject: [PATCH] uwsgi: build plugins with --verbose, too, so we have full logs --- Formula/uwsgi.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/uwsgi.rb b/Formula/uwsgi.rb index 812bd8dc7a..e602426bc9 100644 --- a/Formula/uwsgi.rb +++ b/Formula/uwsgi.rb @@ -111,13 +111,13 @@ class Uwsgi < Formula (libexec/"uwsgi").mkpath plugins.each do |plugin| - system "python", "uwsgiconfig.py", "--plugin", "plugins/#{plugin}", "brew" + system "python", "uwsgiconfig.py", "--verbose", "--plugin", "plugins/#{plugin}", "brew" end python_versions = ["python", "python2"] python_versions << "python3" if build.with? "python3" python_versions.each do |v| - system "python", "uwsgiconfig.py", "--plugin", "plugins/python", "brew", v + system "python", "uwsgiconfig.py", "--verbose", "--plugin", "plugins/python", "brew", v end bin.install "uwsgi"