mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-28 15:52:49 +01:00
build.py: Beautify logging
Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
5b737e50f8
commit
a060823a7c
1 changed files with 1 additions and 1 deletions
|
|
@ -67,7 +67,7 @@ def read_deps(cur, prereq_type):
|
||||||
p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE)
|
p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE)
|
||||||
p.wait()
|
p.wait()
|
||||||
if p.returncode:
|
if p.returncode:
|
||||||
raise Exception("failed to get " + prereq_type + " prerequisites from " + path)
|
raise Exception("failed to get " + prereq_type + " prerequisites for " + cur + ": " + cmd)
|
||||||
r = Set()
|
r = Set()
|
||||||
pattern = re.compile(r'.*') # might be useful at a later point, currently pointless
|
pattern = re.compile(r'.*') # might be useful at a later point, currently pointless
|
||||||
for line in iter(p.stdout.readline,''):
|
for line in iter(p.stdout.readline,''):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue