From 3f1051fc0924295aa5e04e13a7998e889897024b Mon Sep 17 00:00:00 2001 From: Aubrey Taylor Date: Sun, 26 Jan 2025 13:21:21 -0600 Subject: [PATCH] don't read the script, read the config lmao --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index c67b21a..7123ca8 100644 --- a/index.js +++ b/index.js @@ -2,7 +2,7 @@ import { WebhookClient } from "discord.js"; import { summary } from "./api.js"; import { readFileSync } from "fs"; -const config = readFileSync(process.argv[1], "utf-8"); +const config = JSON.parse(readFileSync(process.argv[2], "utf-8")); console.log(config); const webhook = new WebhookClient({ url: config.webhook });