From e762831f4a0a0a8de549d9a62fe8874e70c92a4a Mon Sep 17 00:00:00 2001 From: enriquezgarc Date: Thu, 14 Sep 2023 14:44:49 +0200 Subject: [PATCH] tools: Psoc6 fixing path to devs file. Signed-off-by: enriquezgarc --- tools/ci.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/ci.sh b/tools/ci.sh index 9f61cb355ebf..b404635b8daa 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -269,9 +269,9 @@ function ci_psoc6_flash_multiple_devices { board=$1 # hex file including path with respect to micropython root hex_file=$2 - dev_files=$3 + devs_file=$3 - docker exec mtb-ci make program_multi BOARD=${board} EXT_HEX_FILE=../../${hex_file} DEVS_FILE=${dev_files} + docker exec mtb-ci make program_multi BOARD=${board} EXT_HEX_FILE=../../${hex_file} DEVS_FILE=../../${devs_file} } function ci_psoc6_run_tests {