Skip to content

Commit 45b2421

Browse files
authored
Allow post_install for untrusted platforms (#911)
1 parent 2f87583 commit 45b2421

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commands/core/install.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ func installPlatform(pm *packagemanager.PackageManager,
140140
}
141141

142142
// Perform post install
143-
if !skipPostInstall && platformRelease.IsTrusted {
143+
if !skipPostInstall {
144144
log.Info("Running post_install script")
145145
taskCB(&rpc.TaskProgress{Message: "Configuring platform (post_install run)"})
146146
if err := pm.RunPostInstallScript(platformRelease); err != nil {

0 commit comments

Comments
 (0)