From 0cbb8802555ad6e81f42ce8738842854d0556296 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Tue, 5 May 2015 16:38:22 +0200 Subject: Fix shebangs Signed-off-by: Florian Pritz --- scripts/hooks-wrapper.sh | 2 +- scripts/install-git-hooks.sh | 2 +- scripts/optimize_js.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/hooks-wrapper.sh b/scripts/hooks-wrapper.sh index e89a3567d..2730d3394 100755 --- a/scripts/hooks-wrapper.sh +++ b/scripts/hooks-wrapper.sh @@ -1,4 +1,4 @@ -#!/usr/bin/bash +#!/bin/bash if [ -x $0.local ]; then $0.local "$@" || exit $? fi diff --git a/scripts/install-git-hooks.sh b/scripts/install-git-hooks.sh index 63faa345b..9a76c3e35 100755 --- a/scripts/install-git-hooks.sh +++ b/scripts/install-git-hooks.sh @@ -1,4 +1,4 @@ -#!/usr/bin/bash +#!/bin/bash SCRIPTS_DIR=$(realpath $(dirname "$0")) HOOK_DIR=$(realpath "$SCRIPTS_DIR/../.git/hooks") HOOK_NAMES="applypatch-msg pre-applypatch post-applypatch pre-commit prepare-commit-msg commit-msg post-commit pre-rebase post-checkout post-merge pre-receive update post-receive post-update pre-auto-gc" diff --git a/scripts/optimize_js.sh b/scripts/optimize_js.sh index 33f130b56..82e9a25e6 100755 --- a/scripts/optimize_js.sh +++ b/scripts/optimize_js.sh @@ -1,4 +1,4 @@ -#!/usr/bin/sh +#!/bin/bash script_dir=$(dirname "$0") js_dir="$script_dir/../data/js" -- cgit v1.2.3-24-g4f1b