1
0
mirror of https://github.com/clearml/dropbear synced 2025-02-25 13:22:16 +00:00
dropbear/dropbear_lint.sh

9 lines
111 B
Bash
Raw Normal View History

2020-05-24 05:15:24 +00:00
#!/bin/sh
EXITCODE=0
# #ifdef instead of #if
grep '#ifdef DROPBEAR' -I *.c *.h && EXITCODE=1
exit $EXITCODE