mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
Bootstrap: print URLs being downloaded.
This commit is contained in:
parent
efdaa0d00a
commit
1f4c0c63de
1 changed files with 2 additions and 2 deletions
|
@ -64,9 +64,9 @@ def host_triple():
|
||||||
|
|
||||||
def download(desc, src, writer, start_byte=0):
|
def download(desc, src, writer, start_byte=0):
|
||||||
if start_byte:
|
if start_byte:
|
||||||
print("Resuming download of {}...".format(desc))
|
print("Resuming download of {} ...".format(src))
|
||||||
else:
|
else:
|
||||||
print("Downloading {}...".format(desc))
|
print("Downloading {} ...".format(src))
|
||||||
dumb = (os.environ.get("TERM") == "dumb") or (not sys.stdout.isatty())
|
dumb = (os.environ.get("TERM") == "dumb") or (not sys.stdout.isatty())
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue