Skip to content

Commit 1e5a62c

Browse files
authoredSep 10, 2024··
Don't install oicompare on macOS (#262)
* Dont install oicompare on macOS * Bump version
1 parent 1318e87 commit 1e5a62c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
 

‎src/sinol_make/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from sinol_make.task_type.interactive import InteractiveTaskType # noqa
1313

1414

15-
__version__ = "1.8.3"
15+
__version__ = "1.8.4"
1616

1717

1818
def configure_parsers():

‎src/sinol_make/helpers/oicompare.py

+3
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ def download_oicomapare():
4949

5050

5151
def check_and_download():
52+
# macOS doesn't allow compiling statically and I don't want to deal with it
53+
if util.is_macos():
54+
return
5255
if check_installed():
5356
return
5457
download_oicomapare()

0 commit comments

Comments
 (0)
Please sign in to comment.