Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
Fix typo in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
caesay committed Apr 22, 2022
1 parent 1844366 commit cb7fda7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SquirrelCli/Sync/S3Repository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ await RetryAsync(() => _client.DeleteObjectAsync(new DeleteObjectRequest { Bucke
endpointHost = new Uri(endpointHost, UriKind.Absolute).Host;
}

var baseurl = $"https://{_options.bucket}.{endpoint.Host}/{_prefix}";
var baseurl = $"https://{_options.bucket}.{endpointHost}/{_prefix}";
Log.Info($"Bucket URL: {baseurl}");
Log.Info($"Setup URL: {baseurl}{setupFile.Name}");
}
Expand Down

0 comments on commit cb7fda7

Please sign in to comment.