Skip to content

Commit

Permalink
fix: use kubo npm, go-ipfs is not published anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorropo committed Dec 14, 2023
1 parent 746f8b5 commit 60df8e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actions/update_ipfs_desktop.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func (ctx UpdateIPFSDesktop) Run() error {
branch := repos.IPFSDesktop.KuboBranch(ctx.Version)
title := fmt.Sprintf("Update Kubo: %s", ctx.Version)
body := fmt.Sprintf("This PR updates Kubo to %s", ctx.Version)
command := util.Command{Name: "npm", Args: []string{"install", fmt.Sprintf("go-ipfs@%s", ctx.Version), "--save", "--save-exact"}}
command := util.Command{Name: "npm", Args: []string{"install", fmt.Sprintf("kubo@%s", ctx.Version), "--save", "--save-exact"}}

b, err := ctx.GitHub.GetOrCreateBranch(repos.IPFSDesktop.Owner, repos.IPFSDesktop.Repo, branch, repos.IPFSDesktop.DefaultBranch)
if err != nil {
Expand Down

0 comments on commit 60df8e1

Please sign in to comment.