We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5704138 commit b7f3daeCopy full SHA for b7f3dae
commands/core/install.go
@@ -91,7 +91,10 @@ func installPlatform(pm *packagemanager.PackageManager,
91
return err
92
}
93
94
- downloadPlatform(pm, platformRelease, downloadCB)
+ err := downloadPlatform(pm, platformRelease, downloadCB)
95
+ if err != nil {
96
+ return err
97
+ }
98
taskCB(&rpc.TaskProgress{Completed: true})
99
100
// Install tools first
@@ -114,7 +117,7 @@ func installPlatform(pm *packagemanager.PackageManager,
114
117
115
118
116
119
// Install
- err := pm.InstallPlatform(platformRelease)
120
+ err = pm.InstallPlatform(platformRelease)
121
if err != nil {
122
log.WithError(err).Error("Cannot install platform")
123
0 commit comments