From 0d587d9796b4c4678469cbd63e549873cb9203fd Mon Sep 17 00:00:00 2001 From: James Sharpe Date: Thu, 20 Jun 2024 22:30:15 +0100 Subject: [PATCH] Update clang_tidy_wrapper.bash shebang Use env to find the path to bash --- lint/clang_tidy_wrapper.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lint/clang_tidy_wrapper.bash b/lint/clang_tidy_wrapper.bash index e94d28f5..56938c49 100755 --- a/lint/clang_tidy_wrapper.bash +++ b/lint/clang_tidy_wrapper.bash @@ -1,4 +1,4 @@ -#!/usr/bin/bash +#!/usr/bin/env bash # This is a wrapper for clang-tidy which gives us control over error handling # Usage: clang_tidy_wrapper.bash ... -- #