Skip to content

Commit

Permalink
Add additional logic back in
Browse files Browse the repository at this point in the history
  • Loading branch information
begonaguereca committed Nov 12, 2024
1 parent f9ad39f commit 996dd41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gei/Commands/MigrateRepo/MigrateRepoCommandHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public async Task Handle(MigrateRepoCommandArgs args)

_log.LogInformation("Migrating Repo...");

var blobCredentialsRequired = await _ghesVersionChecker.AreBlobCredentialsRequired(args.GhesApiUrl);
var blobCredentialsRequired = !args.UseGithubStorage || (await _ghesVersionChecker.AreBlobCredentialsRequired(args.GhesApiUrl));

if (args.GhesApiUrl.HasValue())
{
Expand Down

0 comments on commit 996dd41

Please sign in to comment.