summaryrefslogtreecommitdiff
path: root/hid
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2020-07-16 22:32:35 +0300
committerDevaev Maxim <[email protected]>2020-07-16 22:32:35 +0300
commit73069ec44eb0037f8d0d75213b6d59afa9a4c81f (patch)
treec271aa57e1807ee3e765716f2b95287749b17586 /hid
parent32a2e86363b4633407cb3193d4a1c7133d55a03e (diff)
fixed patching
Diffstat (limited to 'hid')
-rw-r--r--hid/patch.py2
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: