We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad4c0dc commit 25b4c86Copy full SHA for 25b4c86
pbsync/__main__.py
@@ -604,6 +604,11 @@ def sync_handler(sync_val: str, repository_val=None):
604
pbtools.run_non_blocking_ex(launch_args)
605
else:
606
launched_editor = False
607
+ if not pbunreal.check_ue_file_association():
608
+ pblog.warning(
609
+ "PBSync failed to find a valid file association to launch the editor, attempting to resolve..."
610
+ )
611
+ pbunreal.run_unreal_setup()
612
if pbunreal.check_ue_file_association():
613
uproject_file = pbconfig.get("uproject_name")
614
path = str(Path(uproject_file).resolve())
0 commit comments