@@ -55,7 +55,7 @@ public static async Task FetchPointers(string branch, bool useOctokit = false)
5555 // Use Octokit to get pointer files through API
5656 try
5757 {
58- IReadOnlyCollection < RepositoryContent > repoFile = await octokitClient . Repository . Content . GetAllContentsByRef ( "antonpup " , "Aurora" , repoPath + "/" + app + ".json" , branch ) ;
58+ IReadOnlyCollection < RepositoryContent > repoFile = await octokitClient . Repository . Content . GetAllContentsByRef ( "Aurora-RGB " , "Aurora" , repoPath + "/" + app + ".json" , branch ) ;
5959 File . WriteAllText ( Path . Combine ( pointerPath , repoFile . ElementAt ( 0 ) . Name ) , repoFile . ElementAt ( 0 ) . Content ) ;
6060 }
6161 catch ( Exception e )
@@ -93,7 +93,7 @@ public static async Task FetchDevPointers(string branch, bool useOctokit = false
9393 string repoPath = "Project-Aurora/Project-Aurora/Pointers" ;
9494
9595 // API call to get directory in repo where pointer jsons are held
96- IReadOnlyCollection < RepositoryContent > content = await octokitClient . Repository . Content . GetAllContentsByRef ( "antonpup " , "Aurora" , repoPath , branch ) ;
96+ IReadOnlyCollection < RepositoryContent > content = await octokitClient . Repository . Content . GetAllContentsByRef ( "Aurora-RGB " , "Aurora" , repoPath , branch ) ;
9797
9898 foreach ( RepositoryContent pointerRepoFiles in content )
9999 {
@@ -102,7 +102,7 @@ public static async Task FetchDevPointers(string branch, bool useOctokit = false
102102 // Use Octokit to get pointer files through API
103103 try
104104 {
105- IReadOnlyCollection < RepositoryContent > repoFile = await octokitClient . Repository . Content . GetAllContentsByRef ( "antonpup " , "Aurora" , repoPath + "/" + pointerRepoFiles . Name , branch ) ;
105+ IReadOnlyCollection < RepositoryContent > repoFile = await octokitClient . Repository . Content . GetAllContentsByRef ( "Aurora-RGB " , "Aurora" , repoPath + "/" + pointerRepoFiles . Name , branch ) ;
106106 File . WriteAllText ( Path . Combine ( pointerPath , repoFile . ElementAt ( 0 ) . Name ) , repoFile . ElementAt ( 0 ) . Content ) ;
107107 }
108108 catch ( Exception e )
0 commit comments