This commit is contained in:
parent
e200ff583b
commit
ee69c088c2
2 changed files with 16 additions and 16 deletions
|
@ -104,5 +104,4 @@ from various contexts of CA, CI and OCI / OS.
|
|||
### .sh
|
||||
|
||||
* check if file & variable match
|
||||
* clone branch if not gitlab
|
||||
* support opensuse
|
||||
|
|
|
@ -17,24 +17,25 @@ COMMANDS_PREFIX = "spcd-"
|
|||
|
||||
|
||||
def clone_project_branch() -> None:
|
||||
step("Clone project branch")
|
||||
log.info(projects)
|
||||
split()
|
||||
log.info(project)
|
||||
split()
|
||||
log.info(f"""\
|
||||
if not projects.environment.get("GITLAB_CI"):
|
||||
step("Clone project branch")
|
||||
log.info(projects)
|
||||
split()
|
||||
log.info(project)
|
||||
split()
|
||||
log.info(f"""\
|
||||
{project.url}
|
||||
↓
|
||||
""")
|
||||
run(
|
||||
"git",
|
||||
"clone",
|
||||
"--branch",
|
||||
project.branch,
|
||||
"--",
|
||||
project.url,
|
||||
project.root,
|
||||
)
|
||||
run(
|
||||
"git",
|
||||
"clone",
|
||||
"--branch",
|
||||
project.branch,
|
||||
"--",
|
||||
project.url,
|
||||
project.root,
|
||||
)
|
||||
|
||||
|
||||
def install_commands(path: str) -> None:
|
||||
|
|
Loading…
Reference in a new issue