From 2551e431866898b81f551cdaec1cb6a099190afd Mon Sep 17 00:00:00 2001 From: laurenalexander-em Date: Mon, 13 May 2024 09:32:04 +0200 Subject: [PATCH] chore(docs): Updated description for init successful --- cli/cmd/initialize/init.go | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/cli/cmd/initialize/init.go b/cli/cmd/initialize/init.go index 7d2a669..6e71021 100644 --- a/cli/cmd/initialize/init.go +++ b/cli/cmd/initialize/init.go @@ -136,15 +136,14 @@ func setPython(a *tool.Tool) { func printSuccess(a app.App) { fmt.Printf(` -🥳 The app has been initialized! 🎉" - -💾 The information you entered is now stored in "numerous.toml". -🔍 The App ID %q is stored in %q, - and is used to identify the app in commands which manage it. -❌ If %q is removed the CLI cannot identify your app, so make - sure not to delete it! -💡 If you are logged in, you can use "numerous list" to find the - App ID again. +The app has been initialized! 🎉" + +The information you entered is now stored in "numerous.toml". +The App ID %q is stored in %q and is used to identify the app in commands which manage it. + +If %q is removed, the CLI cannot identify your app. + +If you are logged in, you can use `numerous list` to find the App ID again. `, a.ID, tool.AppIDFileName, tool.AppIDFileName) }