fix: Print exception if asset linking is failed
This commit is contained in:
parent
d8c84c7b2e
commit
225cc5bb4f
1 changed files with 3 additions and 2 deletions
|
|
@ -385,8 +385,9 @@ def make_asset_dirs(hard_link=False):
|
|||
try:
|
||||
print(start_message, end="\r")
|
||||
link_assets_dir(source, target, hard_link=hard_link)
|
||||
except Exception:
|
||||
print(fail_message, end="\r")
|
||||
except Exception as e:
|
||||
print(e)
|
||||
print(fail_message)
|
||||
|
||||
click.echo(unstrip(click.style("✔", fg="green") + " Application Assets Linked") + "\n")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue