Skip to content

Commit

Permalink
Don't install oicompare on macOS (#262)
Browse files Browse the repository at this point in the history
* Dont install oicompare on macOS

* Bump version
  • Loading branch information
MasloMaslane authored Sep 10, 2024
1 parent 1318e87 commit 1e5a62c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/sinol_make/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from sinol_make.task_type.interactive import InteractiveTaskType # noqa


__version__ = "1.8.3"
__version__ = "1.8.4"


def configure_parsers():
Expand Down
3 changes: 3 additions & 0 deletions src/sinol_make/helpers/oicompare.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ def download_oicomapare():


def check_and_download():
# macOS doesn't allow compiling statically and I don't want to deal with it
if util.is_macos():
return
if check_installed():
return
download_oicomapare()
Expand Down

0 comments on commit 1e5a62c

Please sign in to comment.