1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-06-28 22:11:34 +00:00

Single process fix

This commit is contained in:
ζeh Matt 2022-09-22 23:33:16 +03:00
parent 62138630d2
commit 79ccd8720a
No known key found for this signature in database
GPG key ID: 18CE582C71A225B0

View file

@ -17,7 +17,7 @@ check_format() {
find "$path" -type f -name "*" | while read item; find "$path" -type f -name "*" | while read item;
do do
if [[ "$item" =~ .*\.(cpp|hpp|h) ]]; then if [[ "$item" =~ .*\.(cpp|hpp|h) ]]; then
check_format_file "$item" & check_format_file "$item"
fi; fi;
done; done;
} }