From 5932b25c9bc5222b829912f31c6772ec1c562e49 Mon Sep 17 00:00:00 2001 From: Tom Aldcroft Date: Tue, 9 Aug 2022 09:26:45 -0400 Subject: [PATCH] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index caedeab7..db518f18 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ # Borrowed from acis_taco setup.py. This will install all of the following # into sys.prefix/share/mica/ via the data_files directive. if "--user" not in sys.argv: - share_path = os.path.join(sys.prefix, "share", "mica") + share_path = os.path.join("share", "mica") scripts = [str(script) for script in Path('scripts').glob('update_*.py')] data_files = [(share_path, scripts + ['task_schedule.cfg'])] else: