1
1
mirror of https://github.com/tstack/lnav.git synced 2024-07-07 09:36:19 +03:00
lnav/cleanup_expected.sh
Timothy Stack a27198e8ca [regex101] add an integration with regex101
... and a pile of other changes
2022-04-30 13:06:01 -07:00

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