Skip to content

Commit

Permalink
Merge pull request #1308 from github/use-target-org-instead
Browse files Browse the repository at this point in the history
Use args.GithubTargetOrg instead of args.GithubSourceOrg
  • Loading branch information
jfine authored Dec 5, 2024
2 parents f302adb + 2930591 commit 1b2c1c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gei/Commands/MigrateRepo/MigrateRepoCommandHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public async Task Handle(MigrateRepoCommandArgs args)
var shouldUploadOnce = args.GitArchivePath == args.MetadataArchivePath;

args.GitArchiveUrl = await UploadArchive(
args.GithubSourceOrg,
args.GithubTargetOrg,
args.AwsBucketName,
args.UseGithubStorage,
args.GitArchivePath,
Expand All @@ -140,7 +140,7 @@ public async Task Handle(MigrateRepoCommandArgs args)
args.MetadataArchiveUrl = shouldUploadOnce
? args.GitArchiveUrl
: await UploadArchive(
args.GithubSourceOrg,
args.GithubTargetOrg,
args.AwsBucketName,
args.UseGithubStorage,
args.MetadataArchivePath,
Expand Down

0 comments on commit 1b2c1c6

Please sign in to comment.