From a1521c19fe1d02496dfef2c164f15a0181d6e2ac Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Wed, 6 Nov 2024 10:39:05 +0100 Subject: [PATCH] chore(clustertool): clearify error message for rerun --- clustertool/pkg/initfiles/initfiles.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clustertool/pkg/initfiles/initfiles.go b/clustertool/pkg/initfiles/initfiles.go index 9b92fe22e3b..4ebb005ecb8 100644 --- a/clustertool/pkg/initfiles/initfiles.go +++ b/clustertool/pkg/initfiles/initfiles.go @@ -147,7 +147,7 @@ func genBaseFiles() error { log.Debug().Msg("Detected existing cluster, continuing") } else if os.IsNotExist(err) { createRunAgainFile() - log.Warn().Msg("New cluster detected, creating clusterenv.yaml\n Please fill out ClusterEnv.yaml and run init again!") + log.Warn().Msg("New cluster detected, creating clusterenv.yaml\n Please fill out ClusterEnv.yaml and run init again, after setting-up clusterenv.yaml!") } else { log.Fatal().Err(err).Msgf("Error checking clusterenv file: %s", err) return err