Skip to content

Commit

Permalink
fix: Use correct Github repository archive link
Browse files Browse the repository at this point in the history
There was a mass-replacement for Lava v2 in commit 5864b7a.
This resulted in the auto-download link being broken for Lavavisor.
With this commit, the archive downloads can be successful again.
  • Loading branch information
sigv committed Aug 25, 2024
1 parent ea235a1 commit a11e251
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ecosystem/lavavisor/pkg/process/fetcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ func (pbf *ProtocolBinaryFetcher) downloadAndBuildFromGithub(version, versionDir
return utils.LavaFormatError("[Lavavisor] failed to clean up binary directory", err)
}
// URL might need to be updated based on the actual GitHub repository
url := fmt.Sprintf("https://github.com/lavanet/lava/v2/archive/refs/tags/v%s.zip", version)
url := fmt.Sprintf("https://github.com/lavanet/lava/archive/refs/tags/v%s.zip", version)
utils.LavaFormatInfo("[Lavavisor] Fetching the source from: ", utils.Attribute{Key: "URL", Value: url})

// Send the request
Expand Down

0 comments on commit a11e251

Please sign in to comment.