[arch-projects] [dbscripts] [PATCH 5/8] Add "#!/hint/bash" to the beginning of several files.
Luke Shumaker
lukeshu at lukeshu.com
Wed Mar 14 01:52:02 UTC 2018
From: Luke Shumaker <lukeshu at parabola.nu>
It is a method of notifying text-editors that a file is in Bash syntax
without giving it a propper shebang (which would be confusing, as it
would suggest that the file should be executable), as well as working
across virtually all text-editors (unlike "-*- Mode: Bash -*-" or
whatever).
---
config | 2 ++
config.local.svn-community | 2 ++
config.local.svn-packages | 2 ++
db-functions | 2 +-
4 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/config b/config
index 2f5dbc6..d703e7b 100644
--- a/config
+++ b/config
@@ -1,3 +1,5 @@
+#!/hint/bash
+
FTP_BASE="/srv/ftp"
SVNREPO=''
SVNUSER=''
diff --git a/config.local.svn-community b/config.local.svn-community
index 105ea66..5d61b5e 100644
--- a/config.local.svn-community
+++ b/config.local.svn-community
@@ -1,3 +1,5 @@
+#!/hint/bash
+
PKGREPOS=('community' 'community-testing' 'community-staging' 'multilib' 'multilib-testing' 'multilib-staging')
PKGPOOL='pool/community'
SRCPOOL='sources/community'
diff --git a/config.local.svn-packages b/config.local.svn-packages
index 958a483..34aab35 100644
--- a/config.local.svn-packages
+++ b/config.local.svn-packages
@@ -1,3 +1,5 @@
+#!/hint/bash
+
PKGREPOS=('core' 'extra' 'testing' 'staging' 'kde-unstable' 'gnome-unstable')
PKGPOOL='pool/packages'
SRCPOOL='sources/packages'
diff --git a/db-functions b/db-functions
index ee390ff..0ac5f2d 100644
--- a/db-functions
+++ b/db-functions
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/hint/bash
. /usr/share/makepkg/util.sh
--
2.16.1
More information about the arch-projects
mailing list