mirror of
https://github.com/clearlinux/clr-boot-manager.git
synced 2026-09-06 13:41:41 +00:00
These files should only be handled upstream in the nica repository, never should be have a local dirty submodule tree. Signed-off-by: Ikey Doherty <michael.i.doherty@intel.com>
10 lines
221 B
Bash
Executable File
10 lines
221 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
clang-format -i $(find . -not -path '*/libnica/*' -name '*.[ch]')
|
|
|
|
# Check we have no typos.
|
|
which misspell 2>/dev/null >/dev/null
|
|
if [[ $? -eq 0 ]]; then
|
|
misspell -error `find . -name '*.[ch]'`
|
|
fi
|