We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 176d10c commit c89baf6Copy full SHA for c89baf6
panel/io/convert.py
@@ -552,8 +552,11 @@ def convert_app(
552
553
# resources unpacked into emscripten MEMFS
554
app_resources = {**wheels2pack, **resources_validated}
555
- app_resources_packfile = f'{app_name}.resources.zip'
556
- pack_files(app_resources, os.path.join(dest_path, app_resources_packfile))
+ if app_resources:
+ app_resources_packfile = f'{app_name}.resources.zip'
557
+ pack_files(app_resources, os.path.join(dest_path, app_resources_packfile))
558
+ else:
559
+ app_resources_packfile = None
560
561
# try to convert the app to a standalone package
562
try:
0 commit comments