Add Buffyboard Man pages and Unify Build

This commit is contained in:
Undef 2024-07-26 16:40:49 +00:00 committed by Johannes Marbach
parent edeb5e4a35
commit 0eae2838dc
28 changed files with 243 additions and 191 deletions

View file

@ -0,0 +1,23 @@
#!/bin/bash
log=tmp.log
source "$(dirname "${BASH_SOURCE[0]}")/helpers.sh"
function clean_up() {
rm -f "$log"
}
trap clean_up EXIT
info "Running unl0kr"
run_unl0kr_async "$log"
info "Verifying output"
if ! grep "Using framebuffer backend" "$log"; then
error "Expected framebuffer backend to be selected"
cat "$log"
exit 1
fi
ok