diff options
author | Florian Pritz <bluewind@xinu.at> | 2011-06-30 17:07:54 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-06-30 10:44:45 -0500 |
commit | 9efd10cd2ac9a7654b2c7c94df86bf09ab54f41a (patch) | |
tree | 2965273aa479462a199bfc40a358072069d14df7 /contrib/pacscripts.in | |
parent | c2cce4f3f5e0381d107ced3fee3ab0d7240653d1 (diff) | |
download | pacman-9efd10cd2ac9a7654b2c7c94df86bf09ab54f41a.tar.xz |
fix vim syntax highlighting of .sh files
vim recognises what type of shell script it's dealing with by looking at
the shebang. If detection fails it falls back to sh which doesn't
support some bash features. Adding a normal, possibly broken, shebang
which gets fixed by the Makefile allows vim to detect bash syntax.
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'contrib/pacscripts.in')
-rwxr-xr-x | contrib/pacscripts.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pacscripts.in b/contrib/pacscripts.in index 8ad5173b..37d3feae 100755 --- a/contrib/pacscripts.in +++ b/contrib/pacscripts.in @@ -1,4 +1,4 @@ -#!@BASH_SHELL@ +#!/bin/bash # # pacscripts : tries to print out the {pre,post}_{install,remove,upgrade} # scripts of a given package |