Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

Commit

Permalink
fix(node): fix package name in updater script
Browse files Browse the repository at this point in the history
  • Loading branch information
Satont committed Apr 25, 2022
1 parent 11660bc commit 2c46381
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/node/updater.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ try {

if (update) {
const updateCmd = isInstalledGlobally
? 'npm i -g create-grammy@latest'
: 'npm i create-grammy@latest';
? 'npm i -g @grammyjs/create-grammy@latest'
: 'npm i @grammyjs/create-grammy@latest';

const template =
'Update available ' +
Expand Down

0 comments on commit 2c46381

Please sign in to comment.