tests: try two places for profanity binary

This commit is contained in:
Michael Vetter
2026-03-05 12:33:03 +01:00
parent 9cb11bdec2
commit d7142479ae

View File

@@ -1,2 +1,7 @@
export COLUMNS=300
./profanity -l DEBUG
if [ -f "./build_run/profanity" ]; then
./build_run/profanity -l DEBUG
else
# Fallback for autotools
./profanity -l DEBUG
fi