From 973463da5ea033e75262dd518de9607fb4640561 Mon Sep 17 00:00:00 2001 From: Gabriel Ferreira Date: Sun, 23 Oct 2022 20:48:11 -0300 Subject: [PATCH] build: fix mpiexec check in the ns3 script --- ns3 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ns3 b/ns3 index 9886336ec..5b7726fae 100755 --- a/ns3 +++ b/ns3 @@ -1106,7 +1106,8 @@ def run_step(args, target_to_run, target_args): # running with command template? if args.command_template: commands = (args.command_template % target_to_run).split() - target_to_run = check_program_installed(commands[0]) + check_program_installed(commands[0]) + target_to_run = commands[0] target_args = commands[1:] + target_args # running mpi on the CI?