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