diff --git a/src/cli/commands/install.js b/src/cli/commands/install.js index 85c8648fb7..e72e2b6924 100644 --- a/src/cli/commands/install.js +++ b/src/cli/commands/install.js @@ -682,7 +682,7 @@ export class Install { curr, total, this.flags.force ? this.reporter.lang('rebuildingPackages') : this.reporter.lang('buildingFreshPackages'), - emoji.get('page_with_curl'), + emoji.get('hammer'), ); if (this.flags.ignoreScripts) { diff --git a/src/cli/commands/remove.js b/src/cli/commands/remove.js index 05af15da5b..bb71d32bfd 100644 --- a/src/cli/commands/remove.js +++ b/src/cli/commands/remove.js @@ -87,7 +87,7 @@ export async function run(config: Config, reporter: Reporter, flags: Object, arg } // reinstall so we can get the updated lockfile - reporter.step(++step, totalSteps, reporter.lang('uninstallRegenerate'), emoji.get('page_with_curl')); + reporter.step(++step, totalSteps, reporter.lang('uninstallRegenerate'), emoji.get('hammer')); const installFlags = {force: true, workspaceRootIsCwd: true, ...flags}; const reinstall = new Install(installFlags, config, new NoopReporter(), lockfile); await reinstall.init();