We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 096f60a commit 2383409Copy full SHA for 2383409
internal_filesystem/main.py
@@ -381,6 +381,8 @@ def start_app_by_name(app_name, is_launcher=False):
381
382
def start_app(app_dir, is_launcher=False):
383
print(f"/main.py start_app({app_dir},{is_launcher}")
384
+ global foreground_app_name
385
+ foreground_app_name = app_dir # would be better to store only the app name...
386
manifest_path = f"{app_dir}/META-INF/MANIFEST.MF"
387
app_name, start_script = parse_manifest(manifest_path)
388
start_script_fullpath = f"{app_dir}/{start_script}"
0 commit comments