mirror of
https://github.com/barrucadu/dejafu.git
synced 2024-11-22 21:50:51 +03:00
6 lines
163 B
Bash
Executable File
6 lines
163 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
for package in concurrency dejafu hunit-dejafu tasty-dejafu dejafu-tests; do
|
|
find $package -name '*.hs' -exec stylish-haskell -i {} \;
|
|
done
|