Skip to content

Commit 02942b0

Browse files
committed
compile-options: added missing shebang to files
This allows them to be detected as shell scripts by checkers and formatting tools. Ticket: ENT-12601 Signed-off-by: Lars Erik Wik <lars.erik.wik@northern.tech>
1 parent e78384b commit 02942b0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build-scripts/compile-options

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- mode:sh -*-
1+
#!/bin/sh
22

33
# Calculate dependencies and build parameters according to the environment.
44
# SOURCE this file, don't execute.

build-scripts/detect-environment

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- mode:sh -*-
1+
#!/bin/sh
22

33
#
44
# Always *source* this file, not execute! Always after you first

build-scripts/functions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- mode: sh -*-
1+
#!/bin/sh
22

33
#
44
# Always *source* (not execute) this script at the *top* of your

0 commit comments

Comments
 (0)