Skip to content

Commit 7663e3f

Browse files
committed
Update script calls to include targetApiUrl parameter
1 parent d5ff81b commit 7663e3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ado2gh/Commands/GenerateScript/GenerateScriptCommandHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,8 @@ private async Task<string> GenerateParallelScript(IDictionary<string, string> ap
275275
{
276276
AppendLine(content, " ExecBatch @(");
277277
AppendLine(content, " " + Wrap(DisableAdoRepoScript(adoOrg, adoTeamProject, adoRepo.Name)));
278-
AppendLine(content, " " + Wrap(AddMaintainersToGithubRepoScript(adoTeamProject, githubOrg, githubRepo)));
279-
AppendLine(content, " " + Wrap(AddAdminsToGithubRepoScript(adoTeamProject, githubOrg, githubRepo)));
278+
AppendLine(content, " " + Wrap(AddMaintainersToGithubRepoScript(adoTeamProject, githubOrg, githubRepo, targetApiUrl)));
279+
AppendLine(content, " " + Wrap(AddAdminsToGithubRepoScript(adoTeamProject, githubOrg, githubRepo, targetApiUrl)));
280280
AppendLine(content, " " + Wrap(DownloadMigrationLogScript(githubOrg, githubRepo, targetApiUrl)));
281281

282282
appIds.TryGetValue(adoOrg, out var appId);

0 commit comments

Comments
 (0)