diff --git a/gbm-cli/cmd/root.go b/gbm-cli/cmd/root.go index 43e1f81..e921336 100644 --- a/gbm-cli/cmd/root.go +++ b/gbm-cli/cmd/root.go @@ -26,5 +26,7 @@ func init() { // Add the render command rootCmd.AddCommand(render.RenderCmd) rootCmd.AddCommand(release.ReleaseCmd) - utils.CheckExeVersion(Version) + if !utils.CheckIfTempRun() { + utils.CheckExeVersion(Version) + } }