mrgretwon / fut_sniping_bot

Bot designed to snipe Fifa Ultimate Team players
40 stars 16 forks source link

Makefile code incorrect for MacOS #10

Open Lqurens opened 3 years ago

Lqurens commented 3 years ago

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.

avp90 commented 3 years ago

The Makefile should depend in OS, like seen on Stackoverflow: OS detecting makefile