mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-04 03:11:43 +00:00
[upstream_utils] Use os path separator when matching path (#6993)
This commit is contained in:
@@ -20,7 +20,7 @@ def copy_upstream_src(wpilib_root):
|
||||
|
||||
# Copy gcem include files into allwpilib
|
||||
walk_cwd_and_copy_if(
|
||||
lambda dp, f: dp.startswith("./include"),
|
||||
lambda dp, f: dp.startswith(os.path.join(".", "include")),
|
||||
os.path.join(wpimath, "src/main/native/thirdparty/gcem"),
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user