Donate CPU client test scripts: Use Python from shebang

This commit is contained in:
versat 2019-12-22 19:33:10 +01:00
parent 92ddaa3acd
commit 5715ba7ce0
2 changed files with 2 additions and 2 deletions

View File

@ -12,6 +12,6 @@ cppcheck_tools_path=..
while :
do
git pull
python "${cppcheck_tools_path}/donate-cpu.py" --bandwidth-limit=1m --max-packages=100
"${cppcheck_tools_path}/donate-cpu.py" --bandwidth-limit=1m --max-packages=100
sleep 10
done

View File

@ -4,6 +4,6 @@ cppcheck_tools_path=..
while :
do
python "${cppcheck_tools_path}/donate-cpu.py" --test --bandwidth-limit=2m
"${cppcheck_tools_path}/donate-cpu.py" --test --bandwidth-limit=2m
sleep 2
done