From 8ac91b12cebd54a7eb133cbad4592d497442bd73 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Tue, 7 Jun 2011 15:42:39 -0400 Subject: use consistent vim modelines This also adds a /bin/bash shebang to functions. While not technically necessary, this ensures that vim gives us the correct syntax highlight file. Signed-off-by: Dave Reisner --- functions | 3 +++ 1 file changed, 3 insertions(+) (limited to 'functions') diff --git a/functions b/functions index 9b9d66d..d9abf46 100644 --- a/functions +++ b/functions @@ -1,3 +1,5 @@ +#!/bin/bash + msg () { [ "${QUIET}" = "n" ] && echo $@; } err () { echo "ERROR: $@" >&2; } die () { echo "FATAL: $@" >&2; cleanup; exit 1; } @@ -266,4 +268,5 @@ parse_hook() { add_file "${HOOKDIR}/${SCRIPT}" "/hooks/${SCRIPT}" fi } + # vim: set ft=sh ts=4 sw=4 et: -- cgit v1.2.3-24-g4f1b