Skip to content

Commit

Permalink
Update newCommand.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
xhyrom authored Jan 9, 2022
1 parent 7ccc458 commit 1412a98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/newCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ export const moveFolderJob = (response) => {

export const installDependenciesJob = (location) => {
return new Promise((resolve, reject) => {
exec('npm i dotenv gcommands@next discord.js@13.5.0', { cwd: location }, (error) => {
exec('npm i dotenv gcommands discord.js', { cwd: location }, (error) => {
if (error) reject(error);
else resolve(error);
});
});
};
};

0 comments on commit 1412a98

Please sign in to comment.