Skip to content

Commit

Permalink
make: fix check for apertium-lint
Browse files Browse the repository at this point in the history
  • Loading branch information
unhammer committed Dec 4, 2024
1 parent 364e085 commit a2004b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,4 @@ test: all
| grep -vE 'lm="(.*)(.*)".*/\2_(\\[^_]+|)_' \
| sed 's%^%WARNING: lemma vs par/tail inconsistency in %'
apertium-regtest test
@if test -e apertium-lint; then apertium-lint $(BASENAME).$(LANG1).dix; else echo "apertium-lint not found -- not linting" >&2;fi
@if command -V apertium-lint >/dev/null 2>/dev/null; then apertium-lint $(BASENAME).$(LANG1).dix; else echo "apertium-lint not found -- not linting" >&2;fi

0 comments on commit a2004b6

Please sign in to comment.