fix
Some checks failed
/ job (push) Failing after 1m3s

This commit is contained in:
Marc Beninca 2024-04-28 18:48:01 +02:00
parent dd90f51e37
commit 3211cbea65
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -14,14 +14,13 @@ def cd_clone_branch():
print(f'''\ print(f'''\
{project.url} {project.url}
{os.path.realpath(os.curdir)}
''', end=str(), flush=True) ''', end=str(), flush=True)
ps.run('git', ps.run('git',
'clone', 'clone',
'--branch', project.branch, '--branch', project.branch,
'--', '--',
project.url, project.url,
os.curdir, os.path.realpath(os.curdir),
) )