From 34c7b0ba06f876814f21ecb6c09c168ef493e936 Mon Sep 17 00:00:00 2001 From: Patrick Guo Date: Mon, 25 Nov 2024 14:25:12 -0500 Subject: [PATCH] bug fix: device templates going to wrong location --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 07b515b..1ccb055 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ class CustomInstall(install): # pylint: disable='missing-class-docstring def run(self): shutil.copytree('./src/rs232_to_pdu/devices/', - '/tmp/rs232-to-pdu/devices/', + '/usr/share/rs232-to-pdu/devices/', dirs_exist_ok=True) super().run()