build: attempt to restore Netlify build preview

This commit is contained in:
Jean-Philippe Sirois
2020-11-09 16:55:36 -05:00
parent c76b6c2f99
commit 8b59df15ef
+8 -4
View File
@@ -6,16 +6,13 @@ const Discord = require("discord.js")
const fs = require("fs") const fs = require("fs")
const { Readable } = require("stream") const { Readable } = require("stream")
function execute() {
const client = new Discord.Client() const client = new Discord.Client()
const { BOT_TOKEN } = process.env const { BOT_TOKEN } = process.env
const TPH = "244230771232079873" const TPH = "244230771232079873"
const DESTINATION = "./users.json" const DESTINATION = "./users.json"
if (!BOT_TOKEN) {
throw Error("Missing BOT_TOKEN environment variable")
}
const writeS = (content, dest) => { const writeS = (content, dest) => {
const source = new Readable() const source = new Readable()
source.push(JSON.stringify(content)) source.push(JSON.stringify(content))
@@ -44,3 +41,10 @@ client.once("ready", async () => {
console.log("Attempting to log in...") console.log("Attempting to log in...")
client.login(BOT_TOKEN) client.login(BOT_TOKEN)
}
if (process.env.BOT_TOKEN) {
execute()
} else {
console.log("BOT_TOKEN missing, skipping.")
}