From 8773fafff9038066e516424aa109cf4f99efcc6c Mon Sep 17 00:00:00 2001 From: Jaap Schouwenburg Date: Mon, 20 Jun 2022 15:10:38 +0200 Subject: [PATCH] hooks: Fix shebang on pre-commit hook The pre-commit hook uses features that are not defined in the POSIX shell. Fix the shebang so that it is correctly identified as a bash script. Part-of: --- hooks/pre-commit.hook | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/pre-commit.hook b/hooks/pre-commit.hook index 634099cb..5a15892c 100755 --- a/hooks/pre-commit.hook +++ b/hooks/pre-commit.hook @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Depends on: scripts/checks.sh # Style helpers