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.
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.