11 lines
103 B
Plaintext
11 lines
103 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
. scripts.inc
|
||
|
|
||
|
for dir in $CHECKABLE; do
|
||
|
echo $dir
|
||
|
(cd $dir && make fix)
|
||
|
done
|