From ee280c5c04bef1753c3033b5fcda0d71a916f920 Mon Sep 17 00:00:00 2001
From: Sam <sam.saffron@gmail.com>
Date: Thu, 14 Nov 2013 12:54:41 +1100
Subject: [PATCH] correct param expansion

---
 config/unicorn_launcher | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/unicorn_launcher b/config/unicorn_launcher
index c214b49af..e0c277c9c 100755
--- a/config/unicorn_launcher
+++ b/config/unicorn_launcher
@@ -28,7 +28,7 @@ export UNICORN_SUPERVISOR_PID=$$
 trap on_exit EXIT
 trap on_reload USR2
 
-unicorn -c $1 &
+unicorn $@ &
 UNICORN_PID=$!
 
 echo "supervisor pid: $UNICORN_SUPERVISOR_PID unicorn pid: $UNICORN_PID"