Browse Source

ci: fix quoting for the test_build -include

amends 79321b6707
otherwise, env.ParseFlags never understands it
pull/2490/head
Maxim Prokhorov 2 years ago
parent
commit
d40322d98f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      code/scripts/test_build.py

+ 1
- 1
code/scripts/test_build.py 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()),
]
)


Loading…
Cancel
Save