mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
f97eac55e8
Not "posix", wow. Did anyone ever use this?
7 lines
226 B
Bash
Executable file
7 lines
226 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cppcheck --std=c++11 --quiet \
|
|
--suppressions-list=build_tools/cppcheck.suppressions --inline-suppr \
|
|
--rule-file=build_tools/cppcheck.rules \
|
|
--force \
|
|
${@:---enable=all ./src/}
|