8 lines
168 B
Plaintext
8 lines
168 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# Remove empty files under directory _site
|
||
|
find _site -type f -empty -exec rm -v {} \;
|
||
|
|
||
|
# Test site
|
||
|
cabal test --show-details=always --test-option=--color
|