fix: Print exception if asset linking is failed

This commit is contained in:
Suraj Shetty 2024-12-03 16:36:39 +05:30
parent d8c84c7b2e
commit 225cc5bb4f

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