From b901e14e5edd38a16a2bf9b80377a33b3beeef75 Mon Sep 17 00:00:00 2001 From: Abheek Dhawan Date: Thu, 1 Apr 2021 13:12:35 -0500 Subject: [PATCH] Fix execSync typo --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index f0d47c8..f1e6a6d 100644 --- a/index.js +++ b/index.js @@ -3,7 +3,7 @@ const csv = require('csvtojson'); const Discord = require('discord.js'); const client = new Discord.Client({ partials: ['MESSAGE', 'CHANNEL', 'REACTION'] }); -const { execS } = require("child_process"); +const { execSync } = require("child_process"); client.on("ready", () => { console.log("Logged in as " + client.user.tag + "!");