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 /scripts/rankmirrors.sh.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 'scripts/rankmirrors.sh.in')
-rw-r--r-- | scripts/rankmirrors.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rankmirrors.sh.in b/scripts/rankmirrors.sh.in index 64d5a73c..a0ff6d5d 100644 --- a/scripts/rankmirrors.sh.in +++ b/scripts/rankmirrors.sh.in @@ -1,4 +1,4 @@ -#!@BASH_SHELL@ +#!/bin/bash # # rankmirrors - read a list of mirrors from a file and rank them by speed # @configure_input@ |