From 2555293341780dc5031e14111e29d36b18a7cf76 Mon Sep 17 00:00:00 2001 From: Rainbow Date: Mon, 27 Jun 2016 22:37:26 -0400 Subject: [PATCH 1/2] fixed project shebang bash isn't in /bin on all systems, if it even exists. (FreeBSD, for one, ships with sh, and bash would install to /usr/local/bin) Changed to #!/bin/sh because it doesn't look like you're doing anything bash-specific anyway, that isn't in any other POSIX-compliant sh-derivative --- project | 1 - 1 file changed, 1 deletion(-) diff --git a/project b/project index 47b52fd04..cd56b2a03 100755 --- a/project +++ b/project @@ -1,4 +1,3 @@ -#!/bin/bash # project # Copyright 2008, Sean B. Palmer, inamidst.com # Licensed under the Eiffel Forum License 2. From 65dfe2fe1f9412d1cfeea337383e45d2d5059479 Mon Sep 17 00:00:00 2001 From: Rainbow Date: Mon, 27 Jun 2016 22:40:38 -0400 Subject: [PATCH 2/2] Update project git mangled my change for some reason and only pushed the delete. Shebang fix: redux! --- project | 1 + 1 file changed, 1 insertion(+) diff --git a/project b/project index cd56b2a03..1d482ec79 100755 --- a/project +++ b/project @@ -1,3 +1,4 @@ +#!/bin/sh # project # Copyright 2008, Sean B. Palmer, inamidst.com # Licensed under the Eiffel Forum License 2.