fix first call in script

This commit is contained in:
ant 2024-09-27 11:14:29 +02:00
parent 3b473d460e
commit b5910ef174

View file

@ -55,6 +55,7 @@
import subprocess
from sys import stdin, argv
cmd = argv[1:]
subprocess.call(cmd, shell=True)
while stdin.readline():
subprocess.call(cmd, shell=True)
'';