From d40322d98f60131c697ea4e905772a7222c1cf52 Mon Sep 17 00:00:00 2001 From: Maxim Prokhorov Date: Tue, 30 Nov 2021 03:16:13 +0300 Subject: [PATCH] ci: fix quoting for the test_build -include amends 79321b6707001cae296cf90c626919ea79658870 otherwise, env.ParseFlags never understands it --- code/scripts/test_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/scripts/test_build.py b/code/scripts/test_build.py index c3a0dd89..0b59067b 100755 --- a/code/scripts/test_build.py +++ b/code/scripts/test_build.py @@ -59,7 +59,7 @@ def build_configurations(args, configurations): [ '-DMANUFACTURER=\\"TEST_BUILD\\"', '-DDEVICE=\\"{}\\"'.format(cfg.stem.replace(" ", "_").upper()), - '\\"-include {}\\"'.format(cfg.resolve()), + '-include "{}"'.format(cfg.resolve().as_posix()), ] )