Fix headless bar widget test skip (#6338)

Co-authored-by: almondsun <maramirezes@outlook.com>
This commit is contained in:
Martín Ramírez Espinosa
2026-07-23 07:53:57 -07:00
committed by GitHub
co-authored by almondsun
parent 1b6ab15331
commit 39ca9135c4
+3 -1
View File
@@ -12,7 +12,9 @@ cleanup() {
kill "$QS_PID" 2>/dev/null || true
wait "$QS_PID" 2>/dev/null || true
fi
[[ -n $TMPDIR && -d $TMPDIR ]] && rm -rf "$TMPDIR"
if [[ -n $TMPDIR && -d $TMPDIR ]]; then
rm -rf "$TMPDIR"
fi
}
trap cleanup EXIT