Skip to content

Commit

Permalink
The check argument run com should be true
Browse files Browse the repository at this point in the history
  • Loading branch information
christophecvr committed Sep 23, 2024
1 parent ae73e04 commit ad02d46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mesonbuild/interpreter/interpreterobjects.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def __init__(self,
subdir: str,
mesonintrospect: T.List[str],
in_builddir: bool = False,
check: bool = False,
check: bool = True,
capture: bool = True) -> None:
super().__init__()
if not isinstance(cmd, ExternalProgram):
Expand All @@ -234,7 +234,7 @@ def run_command(self,
subdir: str,
mesonintrospect: T.List[str],
in_builddir: bool,
check: bool = False) -> T.Tuple[int, str, str]:
check: bool = True) -> T.Tuple[int, str, str]:
command_array = cmd.get_command() + args
menv = {'MESON_SOURCE_ROOT': source_dir,
'MESON_BUILD_ROOT': build_dir,
Expand Down

0 comments on commit ad02d46

Please sign in to comment.