Skip to content

Commit

Permalink
FIX change location of filestore during the install
Browse files Browse the repository at this point in the history
  • Loading branch information
TomDLT committed Mar 25, 2022
1 parent 6869228 commit 156c66f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class my_install(install):
def run(self):
install.run(self)
optfile = [f for f in self.get_outputs() if 'defaults.cfg' in f]
prefix = os.path.join(self.install_data, "share", "pycortex")
prefix = os.path.join(self.install_base, "share", "pycortex")
set_default_filestore(prefix, optfile[0])
self.copy_tree('filestore', prefix)
for root, folders, files in os.walk(prefix):
Expand Down

0 comments on commit 156c66f

Please sign in to comment.