parent
af88560aff
commit
dbdd02c28f
@ -1,5 +1,5 @@
|
||||
import subprocess
|
||||
import random
|
||||
from subprocess import call
|
||||
from random import randint
|
||||
|
||||
for i in range(random.randint(1,10)):
|
||||
subprocess.call("/srv/daily-commit/commit.sh", shell=True)
|
||||
for i in range(randint(1,10)):
|
||||
call("/srv/daily-commit/commit.sh", shell=True)
|
||||
|
Loading…
Reference in new issue