diff options
author | Devaev Maxim <[email protected]> | 2020-07-16 22:32:35 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-07-16 22:32:35 +0300 |
commit | 73069ec44eb0037f8d0d75213b6d59afa9a4c81f (patch) | |
tree | c271aa57e1807ee3e765716f2b95287749b17586 /hid/patch.py | |
parent | 32a2e86363b4633407cb3193d4a1c7133d55a03e (diff) |
fixed patching
Diffstat (limited to 'hid/patch.py')
-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: |