otobrglez / compression-puzzle

Attempts to crack the "compression puzzle".
15 stars 47 forks source link

Python scripts don't seem to get invoked #33

Closed refaktor closed 2 years ago

refaktor commented 2 years ago

It seems python3 doesn't run scripts with

python3 src/python/*.py 

like it's written in the make file. Maybe there is a more elegant solution but this works

find src/python/ -name "*.py" -print0 | xargs -0 -n 2 python3
otobrglez commented 2 years ago

@refaktor Good idea. The only thing missing in your solution is that I want to exclude the benchmark.py from the scripts that should run. Find a way to exclude that and open with modified Makefile PR to win this one. :)

otobrglez commented 2 years ago

Tnx for reporting this. I've fixed it.