Skip to content

Commit

Permalink
Merge pull request #1181 from stefan-ptrvch/older-version-installatio…
Browse files Browse the repository at this point in the history
…n-bugfix

Double Slash in URL Bugfix
  • Loading branch information
coreybutler authored Nov 12, 2024
2 parents 6284f0e + 75f2200 commit 1f84908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/web.go
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ func getNodeUrl(v string, vpre string, arch string, append bool) string {
}

//url := "http://nodejs.org/dist/v"+v+"/" + vpre + "/node.exe"
url := GetFullNodeUrl("v" + v + "/" + vpre + "/node.exe")
url := GetFullNodeUrl("v" + v + "/" + vpre + "node.exe")

if !append {
version, err := semver.Make(v)
Expand Down

0 comments on commit 1f84908

Please sign in to comment.