radareorg/r2ghidra

add the boolean check kwarg to the run_command call

Closed this issue · 1 comments

add check:false to run_command

r2ghidra/meson.build

Lines 35 to 41 in 0799403

res = run_command(['r2','-HR2_LIBR_PLUGINS'], capture:true)
if res.returncode() == 0
r2_plugdir = res.stdout().strip()
else
prefix = get_option('prefix')
r2_plugdir = prefix + '/lib/radare2/plugins'
endif

WARNING: You should add the boolean check kwarg to the run_command call.
It currently defaults to false,
but it will default to true in future releases of meson.
See also: mesonbuild/meson#9300

Can you send a pullreq instead of explaining what to do?