From cb8ffb00d671d2e8942c705d73a16f0270d37012 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Sun, 15 Nov 2020 11:07:27 +0100 Subject: [PATCH] cppcheck.sh: Fix shebang This was using "/usr/local/bin/fish" for no good reason - 1. fish might not be installed, 2. fish might not be installed *there*. Just use /bin/sh in this case, if that doesn't exist we have bigger problems, and this is just a simple wrapper for a command call. [ci skip] --- build_tools/cppcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_tools/cppcheck.sh b/build_tools/cppcheck.sh index fc94a2d79..84adfb8b9 100755 --- a/build_tools/cppcheck.sh +++ b/build_tools/cppcheck.sh @@ -1,3 +1,3 @@ -#!/usr/local/bin/fish +#!/bin/sh cppcheck --enable=all --std=posix --quiet ./src/