Skip to content

Commit

Permalink
FIXED: check_installation not to bail out if a feature test raises an…
Browse files Browse the repository at this point in the history
… exception.
  • Loading branch information
JanWielemaker committed Nov 28, 2023
1 parent 97237b8 commit a120e4f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion library/check_installation.pl
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,9 @@
check_features(Dict) :-
Test = Dict.get(features),
!,
call(Test).
catch(Test, Error,
( print_message(warning, Error),
fail)).
check_features(_).


Expand Down

0 comments on commit a120e4f

Please sign in to comment.