From 9efd10cd2ac9a7654b2c7c94df86bf09ab54f41a Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Thu, 30 Jun 2011 17:07:54 +0200 Subject: 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 Signed-off-by: Dan McGee --- contrib/bacman.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib/bacman.in') diff --git a/contrib/bacman.in b/contrib/bacman.in index ebcc386d..fe13e5b9 100755 --- a/contrib/bacman.in +++ b/contrib/bacman.in @@ -1,4 +1,4 @@ -#!@BASH_SHELL@ +#!/bin/bash # # bacman: recreate a package from a running system # This script rebuilds an already installed package using metadata -- cgit v1.2.3-54-g00ecf