From afe205f1cfcc2cdf575367265d3f088e3bcf5923 Mon Sep 17 00:00:00 2001 From: Florian Heinemann Date: Wed, 5 Nov 2014 01:35:10 -0500 Subject: [PATCH] Switch to sh --- bin/release | 2 +- bin/start.sh | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 bin/start.sh diff --git a/bin/release b/bin/release index 34c2c65..a603236 100755 --- a/bin/release +++ b/bin/release @@ -4,5 +4,5 @@ set -e cat << EOF --- default_process_types: - web: erb /app/nginx.conf.erb > /app/nginx.conf && /app/nginx/nginx -c /app/nginx.conf + web: sh start.sh EOF diff --git a/bin/start.sh b/bin/start.sh new file mode 100644 index 0000000..7846bf4 --- /dev/null +++ b/bin/start.sh @@ -0,0 +1,2 @@ +erb /app/nginx.conf.erb > /app/nginx.conf +/app/nginx/nginx -c /app/nginx.conf \ No newline at end of file