Merge pull request #28651 from surajshetty3416/print-asset-failure-exception

This commit is contained in:
Suraj Shetty 2024-12-03 21:44:04 +05:30 committed by GitHub
commit 2fda32887c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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")