From a68e05d95dedab02d49aad49d19a645765e26e5c Mon Sep 17 00:00:00 2001 From: Lee Robinson Date: Thu, 9 Dec 2021 08:25:23 -0600 Subject: [PATCH] Update explanation of remote caching in Turbo CLI output --- cli/internal/login/link.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/internal/login/link.go b/cli/internal/login/link.go index 6357a63454a50..613267598afcf 100644 --- a/cli/internal/login/link.go +++ b/cli/internal/login/link.go @@ -55,9 +55,9 @@ func (c *LinkCommand) Run(args []string) int { c.Ui.Info(fmt.Sprintf(">>> Remote Caching (beta)")) c.Ui.Info("") c.Ui.Info(" Remote Caching shares your cached Turborepo task outputs and logs across") - c.Ui.Info(" with all of your team's Vercel projects and with any other") - c.Ui.Info(" team members and/or services that also enable Remote Caching. This results") - c.Ui.Info(" in a faster build time and faster deployment time for your team.") + c.Ui.Info(" all your team’s Vercel projects. It also can share outputs") + c.Ui.Info(" with other services that enable Remote Caching, like CI/CD systems.") + c.Ui.Info(" This results in faster build times and deployments for your team.") c.Ui.Info(util.Sprintf(" For more info, see ${UNDERLINE}https://turborepo.org/docs/features/remote-caching${RESET}")) c.Ui.Info("") currentDir, fpErr := filepath.Abs(".")