Repository: nifi-minifi-cpp Updated Branches: refs/heads/master 20339fbee -> e69b20aff
MINIFICPP-495 Move shebang line to first in the file. This closes #330. Signed-off-by: Marc Parisi <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/commit/e69b20af Tree: http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/tree/e69b20af Diff: http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/diff/e69b20af Branch: refs/heads/master Commit: e69b20aff3abe44be214d5edaf00e22a48258421 Parents: 20339fb Author: Aldrin Piri <[email protected]> Authored: Mon May 14 15:49:09 2018 -0400 Committer: Marc Parisi <[email protected]> Committed: Mon May 14 20:25:52 2018 -0400 ---------------------------------------------------------------------- bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/e69b20af/bootstrap.sh ---------------------------------------------------------------------- diff --git a/bootstrap.sh b/bootstrap.sh index 1ea5646..d916f8f 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,3 +1,4 @@ +#!/bin/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 @@ -14,7 +15,6 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -#!/bin/bash script_directory="$(cd "$(dirname "$0")" && pwd)" @@ -143,7 +143,7 @@ fi if [ "$NO_PROMPT" = "true" ]; then agree="N" echo "****************************************" - echo "Welcome, this boostrap script will update your system to install MiNIFi C++" + echo "Welcome, this bootstrap script will update your system to install MiNIFi C++" echo "You have opted to skip prompts. " fi
