Skip to content

Commit fcf6298

Browse files
noahparcanis
authored andcommitted
Use hammer emoji for install/reinstall stage (#6749)
Switch from page_with_curl (📃) to hammer (🔨) emoji for this stage.
1 parent 011a634 commit fcf6298

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cli/commands/install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ export class Install {
682682
curr,
683683
total,
684684
this.flags.force ? this.reporter.lang('rebuildingPackages') : this.reporter.lang('buildingFreshPackages'),
685-
emoji.get('page_with_curl'),
685+
emoji.get('hammer'),
686686
);
687687

688688
if (this.flags.ignoreScripts) {

src/cli/commands/remove.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export async function run(config: Config, reporter: Reporter, flags: Object, arg
8787
}
8888

8989
// reinstall so we can get the updated lockfile
90-
reporter.step(++step, totalSteps, reporter.lang('uninstallRegenerate'), emoji.get('page_with_curl'));
90+
reporter.step(++step, totalSteps, reporter.lang('uninstallRegenerate'), emoji.get('hammer'));
9191
const installFlags = {force: true, workspaceRootIsCwd: true, ...flags};
9292
const reinstall = new Install(installFlags, config, new NoopReporter(), lockfile);
9393
await reinstall.init();

0 commit comments

Comments
 (0)