Skip to content
Snippets Groups Projects
Commit 4c8dd856 authored by Cecylia Bocovich's avatar Cecylia Bocovich :speech_balloon:
Browse files

Make gitlab repositories public

Created projects default to private, we need to set the visibility in
the script to make them public.
parent 5404ef81
Branches
No related tags found
No related merge requests found
......@@ -35,9 +35,12 @@ class GitlabRemote:
def create_projects(self):
# Create one project for each platform
windows_repo = self.gl.projects.create({'name': 'torbrowser-windows'})
mac_repo = self.gl.projects.create({'name': 'torbrowser-osx'})
linux_repo = self.gl.projects.create({'name': 'torbrowser-linux'})
windows_repo = self.gl.projects.create({'name': 'torbrowser-windows',
'visibility': 'public'})
mac_repo = self.gl.projects.create({'name': 'torbrowser-osx',
'visibility': 'public'})
linux_repo = self.gl.projects.create({'name': 'torbrowser-linux',
'visibility': 'public'})
self.repositories = {
"linux32" : linux_repo,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment