ci: fix quoting for the test_build -include

amends 79321b6707
otherwise, env.ParseFlags never understands it
This commit is contained in:
Maxim Prokhorov
2021-11-30 03:16:13 +03:00
parent d094283df2
commit d40322d98f

View File

@@ -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()),
]
)