You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# fast, cached version. we always run this option so we fill in the cache.
1007
+
args= [
1008
+
pbinfo.format_repo_folder(longtail_path),
1009
+
"get",
1010
+
"--source-path",
1011
+
f"{gcs_bucket}lt/{bundle_name}/{version}.json",
1012
+
"--target-path",
1013
+
str(base_path),
1014
+
"--cache-path",
1015
+
f"Saved/longtail/cache/{bundle_name}",
1016
+
"--enable-file-mapping",
1017
+
]
1018
+
env=change_args(args)
1019
+
proc=pbtools.run_stream(
1020
+
args,
1021
+
env=env,
1022
+
logfunc=pbtools.progress_stream_log,
1023
+
)
1032
1024
# print out a newline
1033
1025
print("")
1026
+
1034
1027
ifproc.returncode:
1035
1028
pbtools.error_state(
1036
1029
f"Failed to download engine update. Make sure your system time is synced. If this issue persists, please request help from {pbconfig.get('support_channel')}."
Copy file name to clipboardExpand all lines: pbsync/__main__.py
+57-32Lines changed: 57 additions & 32 deletions
Original file line number
Diff line number
Diff line change
@@ -282,6 +282,11 @@ def main(argv):
282
282
"--debugbranch",
283
283
help="If provided, CliqueSync will use the provided branch as expected branch",
284
284
)
285
+
parser.add_argument(
286
+
"--uproject",
287
+
help=f"Multi-project folders only: project name to choose from. If not provided, it will prompt the user for one, or in CI environments, use the first one found.",
0 commit comments