Skip to content
This repository has been archived by the owner on May 6, 2020. It is now read-only.

Commit

Permalink
scripts: relnotes: fix /bin/bash line
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
Graham Whaley committed Sep 11, 2017
1 parent 1fe09bb commit b9392f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/release_notes.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash
#
# Copyright (c) 2017 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -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"
Expand Down

0 comments on commit b9392f3

Please sign in to comment.