| |
@@ -282,10 +282,7 @@
|
| |
# Since gitlab allows git repos to be checked out with incorrect capitilization
|
| |
# we need to check the spelling when cloning
|
| |
gl = gitlab.Gitlab(_DEFAULT_API_BASE_URL)
|
| |
- if "modules/" in self.args.repo[0]:
|
| |
- project_name_with_namespace = "redhat/centos-stream/"+self.args.repo[0]
|
| |
- short_name=self.args.repo[0].split("/")[1]
|
| |
- if "rpms/" in self.args.repo[0]:
|
| |
+ if "/" in self.args.repo[0]:
|
| |
project_name_with_namespace = "redhat/centos-stream/"+self.args.repo[0]
|
| |
short_name=self.args.repo[0].split("/")[1]
|
| |
else:
|
| |
When cloning, if the name has a / in it, treat them all the same.
This allows us to not check for rpms/ modules/ test/ differently.
Signed-off-by: Troy Dawson tdawson@redhat.com