As per jpakkane's suggestion use `Popen_safe` instead of `subprocess.getoutput`
Jussi suggested to use `Popen_safe` from meson's library for portability reasons.
This commit is contained in:
parent
50376cca37
commit
078527a744
|
@ -237,7 +237,8 @@ class Resolver:
|
||||||
revno = p.get('revision')
|
revno = p.get('revision')
|
||||||
is_there = os.path.isdir(checkoutdir)
|
is_there = os.path.isdir(checkoutdir)
|
||||||
if is_there:
|
if is_there:
|
||||||
current_revno = subprocess.getoutput(' '.join(['svn', 'info', '--show-item', 'revision', checkoutdir]))
|
p, out = Popen_safe(['svn', 'info', '--show-item', 'revision', checkoutdir])
|
||||||
|
current_revno = out
|
||||||
if current_revno == revno:
|
if current_revno == revno:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue