IGNITE-13959 - Fixed the issue with running ignite.sh under non-bash shells
diff --git a/modules/cli/ignite.sh b/modules/cli/ignite.sh
index bda0112..ebe345d 100644
--- a/modules/cli/ignite.sh
+++ b/modules/cli/ignite.sh
@@ -1,3 +1,5 @@
+#!/usr/bin/env bash
+
 # Licensed to the Apache Software Foundation (ASF) under one or more
 # contributor license agreements.  See the NOTICE file distributed with
 # this work for additional information regarding copyright ownership.
@@ -13,7 +15,6 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-#!/usr/bin/env bash
 set -o nounset; set -o errexit; set -o pipefail; set -o errtrace; set -o functrace
 
 MYSELF=`which "${0}" 2>/dev/null`