about summary refs log tree commit homepage
path: root/bin/unicorn
diff options
context:
space:
mode:
Diffstat (limited to 'bin/unicorn')
-rwxr-xr-xbin/unicorn3
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/unicorn b/bin/unicorn
index 7c65590..658d27c 100755
--- a/bin/unicorn
+++ b/bin/unicorn
@@ -112,11 +112,10 @@ ru = ARGV[0] || "config.ru"
 abort "configuration file #{ru} not found" unless File.exist?(ru)
 
 app = Unicorn.builder(ru, opts)
-require 'pp' if $DEBUG
-
 listeners << "#{host}:#{port}" if set_listener
 
 if $DEBUG
+  require 'pp'
   pp({
     :unicorn_options => options,
     :app => app,