We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8771bae commit 522135bCopy full SHA for 522135b
commands/core/install.go
@@ -142,9 +142,13 @@ func installPlatform(pm *packagemanager.PackageManager,
142
// Perform post install
143
if !skipPostInstall && platformRelease.IsTrusted {
144
log.Info("Running post_install script")
145
+ taskCB(&rpc.TaskProgress{Message: "Configuring platform (post_install run)"})
146
if err := pm.RunPostInstallScript(platformRelease); err != nil {
147
return errors.Errorf("running post install: %s", err)
148
}
149
+ } else if skipPostInstall {
150
+ log.Info("Skipping platform configuration (post_install run).")
151
+ taskCB(&rpc.TaskProgress{Message: "Skipping platform configuration (post_install run)"})
152
153
154
log.Info("Platform installed")
0 commit comments