mirror of
https://github.com/tstack/lnav
synced 2024-11-01 21:40:34 +00:00
a27198e8ca
... and a pile of other changes
16 lines
343 B
Bash
Executable File
16 lines
343 B
Bash
Executable File
#!/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
|