Skip to content

Commit

Permalink
Fix the issue
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosNihelton committed Jul 18, 2024
1 parent 5efe8c7 commit b75c5f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion windows-agent/internal/proservices/landscape/executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ func download(ctx context.Context, f io.Writer, u *url.URL) (err error) {
// ...
func wantRootfsChecksum(ctx context.Context, u *url.URL) (string, error) {
imageName := filepath.Base(u.Path)
shasRelativeURL, err := url.Parse("../SHA256SUMS")
shasRelativeURL, err := url.Parse("SHA256SUMS")
if err != nil {
return "", fmt.Errorf("could not assemble SHA256SUMS location: %v", err)
}
Expand Down

0 comments on commit b75c5f5

Please sign in to comment.