5 lines
87 B
Bash
5 lines
87 B
Bash
#!/usr/bin/env sh
|
|
for i in test/*.fnl; do
|
|
fennel --correlate $i && echo $i OK
|
|
done
|