Merge pull request #28651 from surajshetty3416/print-asset-failure-exception
This commit is contained in:
commit
2fda32887c
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