[tor-commits] [gettor/master] Make gitlab repositories public

cohosh at torproject.org cohosh at torproject.org
Thu Jan 23 16:41:47 UTC 2020


commit 4c8dd8568ac7ee9fd01a75d23b9fcfbf507be5c0
Author: Cecylia Bocovich <cohosh at torproject.org>
Date:   Thu Jan 23 09:26:50 2020 -0500

    Make gitlab repositories public
    
    Created projects default to private, we need to set the visibility in
    the script to make them public.
---
 scripts/update_git | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/scripts/update_git b/scripts/update_git
index 5808139..4861baf 100755
--- a/scripts/update_git
+++ b/scripts/update_git
@@ -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,



More information about the tor-commits mailing list