From e1ba1b414f71a81e3308fcf06501974276477ca7 Mon Sep 17 00:00:00 2001 From: Alex Resnick Date: Thu, 23 Jan 2025 08:46:47 -0600 Subject: [PATCH] Fix the path --- vendor-update/vendor-update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor-update/vendor-update.py b/vendor-update/vendor-update.py index 1de561c..aceae5f 100644 --- a/vendor-update/vendor-update.py +++ b/vendor-update/vendor-update.py @@ -27,7 +27,7 @@ def getProjectYear() -> str: - settings = Path.cwd().joinpath(".wpilib\\wpilib_preferences.json") + settings = Path.cwd().joinpath(".wpilib/wpilib_preferences.json") with settings.open(mode="r", encoding="utf-8") as f: wpilib_settings = json.load(f) return wpilib_settings.get("projectYear", None)