diff options
Diffstat (limited to 'hid')
-rw-r--r-- | hid/patch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hid/patch.py b/hid/patch.py index 73afdec7..100c0d5b 100644 --- a/hid/patch.py +++ b/hid/patch.py @@ -11,7 +11,7 @@ env_path = join(deps_path, env["PIOENV"]) flag_path = join(env_path, ".patched") if not exists(flag_path): - env.Execute(f"patch -p1 -d {join(env_path, 'HID-Project_ID523')} < {join('patches', 'absmouse.patch')}") + env.Execute(f"patch -p1 -d {join(env_path, 'HID-Project')} < {join('patches', 'absmouse.patch')}") def touch_flag(*_, **__) -> None: with open(flag_path, "w") as flag_file: |