From 1f3f672d3f9e64323a86c72ab3e487c4df383366 Mon Sep 17 00:00:00 2001 From: Damian Bushong Date: Mon, 18 Nov 2013 02:27:48 -0600 Subject: [PATCH] /bin/bash to /bin/sh No bashisms present? Don't be explicit about needing bash, then. --- nodebb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nodebb b/nodebb index 3733935784..1b43292926 100755 --- a/nodebb +++ b/nodebb @@ -1,6 +1,6 @@ -#!/bin/bash +#!/bin/sh clear echo "Launching NodeBB in \"development\" mode." echo "To run the production build of NodeBB, please use \"forever\"." echo "More Information: https://github.com/designcreateplay/NodeBB/wiki/How-to-run-NodeBB" -NODE_ENV=development supervisor --extensions 'node|js|tpl' -- app $1 \ No newline at end of file +NODE_ENV=development supervisor --extensions 'node|js|tpl' -- app $1