From fc9055dd6ee3145302018e6e5e8c0cc666718fcb Mon Sep 17 00:00:00 2001 From: Arushi Kesarwani Date: Tue, 28 Mar 2023 14:46:34 -0700 Subject: [PATCH] Renaming Installing Bundler step of init --- packages/cli-doctor/src/tools/runBundleInstall.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli-doctor/src/tools/runBundleInstall.ts b/packages/cli-doctor/src/tools/runBundleInstall.ts index 85dfadae1..f729f01ef 100644 --- a/packages/cli-doctor/src/tools/runBundleInstall.ts +++ b/packages/cli-doctor/src/tools/runBundleInstall.ts @@ -5,7 +5,7 @@ import {Loader} from '../types'; async function runBundleInstall(loader: Loader) { try { - loader.start('Installing Bundler'); + loader.start('Installing Ruby Gems'); await execa('bundle', ['install']); } catch (error) {