You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
as the title says
the code for the Makefile file is incorrect for MacOS
it now is: find -name '*.pyc' -delete find -name __pycache__ -delete python src/main.py
but should be: find . -name '*.pyc' -delete find . -name __pycache__ -delete python src/main.py
Although even after doing this its not working for MacOS but that had to be said.
The text was updated successfully, but these errors were encountered:
as the title says
the code for the Makefile file is incorrect for MacOS
it now is:
find -name '*.pyc' -delete find -name __pycache__ -delete python src/main.py
but should be:
find . -name '*.pyc' -delete find . -name __pycache__ -delete python src/main.py
Although even after doing this its not working for MacOS but that had to be said.
The text was updated successfully, but these errors were encountered: