Skip to content

Commit

Permalink
Add Miniconda share path for sextractor
Browse files Browse the repository at this point in the history
  • Loading branch information
ferrigno committed Feb 8, 2024
1 parent 78a74af commit e456be0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mosaic/treat.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@
if not os.path.isdir(sextractor_share):
sextractor_share = "/opt/conda/share/sextractor/"
if not os.path.isdir(sextractor_share):
raise Exception('No sextractor share available')
sextractor_share = "/opt/miniconda/share/sextractor/"
if not os.path.isdir(sextractor_share):
raise Exception('No sextractor share available')


def render(*args):
logger.info('%s', *args)
Expand Down

0 comments on commit e456be0

Please sign in to comment.