forked from sig_core/toolkit
fix subprocess
This commit is contained in:
parent
fdbfd840a0
commit
08f7a44cc1
@ -871,11 +871,10 @@ class RepoSync:
|
||||
tmpclone
|
||||
)
|
||||
|
||||
git_clone = subprocess.Popen(
|
||||
clonecmd,
|
||||
git_clone = subprocess.call(
|
||||
shlex.split(clonecmd),
|
||||
stdout=subprocess.DEVNULL,
|
||||
stderr=subprocess.DEVNULL,
|
||||
shell=True
|
||||
stderr=subprocess.DEVNULL
|
||||
)
|
||||
|
||||
# Copy files
|
||||
|
Loading…
Reference in New Issue
Block a user