make ./ctl update more verbose
This commit is contained in:
parent
d5b9697c44
commit
b2f5005598
1 changed files with 7 additions and 2 deletions
|
@ -82,8 +82,13 @@ def command_update(*args):
|
||||||
Update to latest development version
|
Update to latest development version
|
||||||
"""
|
"""
|
||||||
import update
|
import update
|
||||||
if not (update.download() and update.install()):
|
print('Downloading...')
|
||||||
print("UPDATE FAILED")
|
if not update.download():
|
||||||
|
print('Download failed')
|
||||||
|
return
|
||||||
|
print('Installing...')
|
||||||
|
if not update.install():
|
||||||
|
print("Installation failed")
|
||||||
|
|
||||||
def command_postupdate(*args):
|
def command_postupdate(*args):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Add table
Reference in a new issue