Donate CPU: add a short sleep after git clone/pull

This commit is contained in:
Daniel Marjamäki 2018-08-24 18:21:16 +02:00
parent dce3281766
commit 921a1a0396
1 changed files with 1 additions and 0 deletions

View File

@ -38,6 +38,7 @@ def getCppcheck(workPath):
subprocess.call(['git', 'pull'])
else:
subprocess.call(['git', 'clone', 'http://github.com/danmar/cppcheck.git', cppcheckPath])
time.sleep(2)
def compile(cppcheckPath):
print('Compiling Cppcheck..')