mirror of
https://github.com/tstack/lnav
synced 2024-11-01 21:40:34 +00:00
16 lines
343 B
Bash
16 lines
343 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
srcdir="$1"
|
||
|
builddir="$2"
|
||
|
|
||
|
for fname in "${srcdir}"/expected/*.out; do
|
||
|
stem=$(basename "$fname" | sed -e 's/.out$//')
|
||
|
|
||
|
if ! test -f "${builddir}/$stem.cmd"; then
|
||
|
echo "removing $fname"
|
||
|
guilt rm "$fname"
|
||
|
echo "removing ${srcdir}/expected/${stem}.err"
|
||
|
guilt rm "${srcdir}/expected/${stem}.err"
|
||
|
fi
|
||
|
done
|