about summary refs log tree commit homepage
path: root/lib/unicorn/app/exec_cgi.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/unicorn/app/exec_cgi.rb')
-rw-r--r--lib/unicorn/app/exec_cgi.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unicorn/app/exec_cgi.rb b/lib/unicorn/app/exec_cgi.rb
index 2262e4c..ef2a18e 100644
--- a/lib/unicorn/app/exec_cgi.rb
+++ b/lib/unicorn/app/exec_cgi.rb
@@ -36,7 +36,7 @@ module Unicorn::App
       self.args = args
       first = args[0] or
         raise ArgumentError, "need path to executable"
-      first[0..0] == "/" or args[0] = ::File.expand_path(first)
+      first[0] == ?/ or args[0] = ::File.expand_path(first)
       File.executable?(args[0]) or
         raise ArgumentError, "#{args[0]} is not executable"
     end