You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Refactored executils.Command
* Added IsTrusted flag in PlatformReleases
This is required for post_install script processing.
* Run post_install.sh script on trusted platforms
* Small fix on post-install precondition
* Use absolute path for running post_install script
* Added --skip-post-install flags. Refactored PostInstall function.
* Run post-install scripts by default only if the CLI is interactive
This should prevent CI-based runs to block waiting for user interaction.
* Added post_install run messages
cmd.Flags().BoolVar(&postInstallFlags.runPostInstall, "run-post-install", false, "Force run of post-install scripts (if the CLI is not running interactively).")
57
+
cmd.Flags().BoolVar(&postInstallFlags.skipPostInstall, "skip-post-install", false, "Force skip of post-install scripts (if the CLI is running interactively).")
0 commit comments