From b9392f3fcc65747582451d5d224b6da2fe0e28f1 Mon Sep 17 00:00:00 2001 From: Graham Whaley Date: Tue, 5 Sep 2017 09:54:46 +0100 Subject: [PATCH] scripts: relnotes: fix /bin/bash line The script had the #!/bin/bash not on the first line, where it should be. Fix with the obvious line move. Fixes: #515 Signed-off-by: Graham Whaley --- scripts/release_notes.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/release_notes.sh b/scripts/release_notes.sh index 9ca32594..2bc8d687 100755 --- a/scripts/release_notes.sh +++ b/scripts/release_notes.sh @@ -1,3 +1,5 @@ +#!/bin/bash +# # Copyright (c) 2017 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,8 +14,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -#!/bin/bash - script_dir=$(dirname "$0") source "${script_dir}/../versions.txt"