Fix agent attempts to check out code when in standalone mode

This commit is contained in:
allegroai 2022-02-07 20:03:08 +02:00
parent d521482409
commit bfed3ccf4d

View File

@ -673,9 +673,9 @@ def clone_repository_cached(session, execution, destination):
)
)
# checkout in the newly copy destination
vcs.location = Text(clone_folder)
vcs.checkout()
# checkout in the newly copy destination
vcs.location = Text(clone_folder)
vcs.checkout()
repo_info = vcs.get_repository_copy_info(clone_folder)