Using /usr/bin/env is more portable to various *nix flavours. Fixes #2688
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
################################################################################
#
# Bake is a shell script for running CakePHP bake script
@@ -30,4 +30,4 @@ APP=`pwd`
exec php -q "$LIB"cake.php -working "$APP" "$@"
-exit;
+exit;