Merge pull request #1210 from CyBot/master

Don't perform any changes when trying to use current node version
This commit is contained in:
Corey Butler
2025-01-02 09:11:08 -06:00
committed by GitHub

View File

@@ -1154,6 +1154,14 @@ func use(version string, cpuarch string, reload ...bool) {
}
}
// Check if a change is needed
curVersion, curCpuarch := node.GetCurrentVersion()
if version == curVersion && cpuarch == curCpuarch {
fmt.Println("node v" + version + " (" + cpuarch + "-bit) is already in use.")
status <- Status{Done: true}
return
}
// Make sure the version is installed. If not, warn.
if !node.IsVersionInstalled(env.root, version, cpuarch) {
err = fmt.Errorf("node v%s (%v-bit) is not installed.", version, cpuarch)