mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
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]
This commit is contained in:
parent
61d322d403
commit
cb8ffb00d6
1 changed files with 1 additions and 1 deletions
|
@ -1,3 +1,3 @@
|
|||
#!/usr/local/bin/fish
|
||||
#!/bin/sh
|
||||
|
||||
cppcheck --enable=all --std=posix --quiet ./src/
|
||||
|
|
Loading…
Reference in a new issue