Repository: nifi-minifi-cpp Updated Branches: refs/heads/master 1a3136b71 -> 4590f6286
MINIFICPP-586: Move Hashbangs to first line of file This closes #384. Signed-off-by: Aldrin Piri <[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/4590f628 Tree: http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/tree/4590f628 Diff: http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/diff/4590f628 Branch: refs/heads/master Commit: 4590f6286d4c764b39b858f8d99f489eb756eb1b Parents: 1a3136b Author: Marc Parisi <[email protected]> Authored: Tue Jul 31 12:16:12 2018 -0400 Committer: Aldrin Piri <[email protected]> Committed: Wed Aug 1 10:22:06 2018 -0400 ---------------------------------------------------------------------- aptitude.sh | 3 ++- centos.sh | 2 +- darwin.sh | 2 +- debian.sh | 3 ++- deploy.sh | 3 ++- fedora.sh | 3 ++- rheldistro.sh | 3 ++- suse.sh | 3 ++- 8 files changed, 14 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/4590f628/aptitude.sh ---------------------------------------------------------------------- diff --git a/aptitude.sh b/aptitude.sh index c9bb2ed..8c14456 100644 --- a/aptitude.sh +++ b/aptitude.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,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -#!/bin/bash + verify_enable(){ feature="$1" feature_status=${!1} http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/4590f628/centos.sh ---------------------------------------------------------------------- diff --git a/centos.sh b/centos.sh index 2794576..14d1e65 100644 --- a/centos.sh +++ b/centos.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 verify_enable() { feature="$1" http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/4590f628/darwin.sh ---------------------------------------------------------------------- diff --git a/darwin.sh b/darwin.sh index 2f9f5c6..7a4ef90 100644 --- a/darwin.sh +++ b/darwin.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 verify_enable() { feature="$1" http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/4590f628/debian.sh ---------------------------------------------------------------------- diff --git a/debian.sh b/debian.sh index 758017f..4a50dbb 100644 --- a/debian.sh +++ b/debian.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,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -#!/bin/bash + verify_enable(){ feature="$1" feature_status=${!1} http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/4590f628/deploy.sh ---------------------------------------------------------------------- diff --git a/deploy.sh b/deploy.sh index 63d58db..00a1c69 100755 --- a/deploy.sh +++ b/deploy.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,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -#!/bin/bash + build_identifier=$1 http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/4590f628/fedora.sh ---------------------------------------------------------------------- diff --git a/fedora.sh b/fedora.sh index 99b9439..252ed5b 100644 --- a/fedora.sh +++ b/fedora.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,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -#!/bin/bash + verify_enable(){ echo "true" } http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/4590f628/rheldistro.sh ---------------------------------------------------------------------- diff --git a/rheldistro.sh b/rheldistro.sh index f4f1c0d..52ef928 100644 --- a/rheldistro.sh +++ b/rheldistro.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,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -#!/bin/bash + verify_enable() { feature="$1" feature_status=${!1} http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/4590f628/suse.sh ---------------------------------------------------------------------- diff --git a/suse.sh b/suse.sh index 51fa005..955e047 100644 --- a/suse.sh +++ b/suse.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,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -#!/bin/bash + verify_enable() { feature="$1" feature_status=${!1}
