[devtools,1/2] Add '#!/hint/bash' headers to non-executable bash files.

Message ID 20170328194133.21068-2-lukeshu@parabola.nu
State Accepted
Headers show
Series [devtools,1/2] Add '#!/hint/bash' headers to non-executable bash files. | expand

Commit Message

Luke Shumaker March 28, 2017, 7:41 p.m. UTC
From: Luke Shumaker <lukeshu@lukeshu.com>

This provides a cross-editor hint that the syntax of the file is Bash.
---
 bash_completion.in | 2 ++
 lib/archroot.sh    | 2 ++
 lib/common.sh      | 2 ++
 lib/valid-tags.sh  | 2 ++
 4 files changed, 8 insertions(+)

Patch

diff --git a/bash_completion.in b/bash_completion.in
index dd140fc..10dad36 100644
--- a/bash_completion.in
+++ b/bash_completion.in
@@ -1,3 +1,5 @@ 
+#!/hint/bash
+
 _devtools_compgen() {
   local i r
   COMPREPLY=($(compgen -W '$*' -- "$cur"))
diff --git a/lib/archroot.sh b/lib/archroot.sh
index 989f1e1..d8d4a2e 100644
--- a/lib/archroot.sh
+++ b/lib/archroot.sh
@@ -1,3 +1,5 @@ 
+#!/hint/bash
+
 CHROOT_VERSION='v4'
 
 ##
diff --git a/lib/common.sh b/lib/common.sh
index 5ef9f97..e64553b 100644
--- a/lib/common.sh
+++ b/lib/common.sh
@@ -1,3 +1,5 @@ 
+#!/hint/bash
+
 # Avoid any encoding problems
 export LANG=C
 
diff --git a/lib/valid-tags.sh b/lib/valid-tags.sh
index 36918fe..9491b0a 100644
--- a/lib/valid-tags.sh
+++ b/lib/valid-tags.sh
@@ -1,3 +1,5 @@ 
+#!/hint/bash
+
 _arch=(
 	i686
 	x86_64