Fixing issue with init.

This commit is contained in:
mike12345567 2021-02-26 13:33:31 +00:00
parent ffa2c3459a
commit 333d7279ac
2 changed files with 6 additions and 3 deletions

View File

@ -29,7 +29,8 @@ async function init() {
}
const promises = []
for (let url of FILE_URLS) {
promises.push(downloadFile(url, __dirname))
const fileName = url.split("/").slice(-1)[0]
promises.push(downloadFile(url, `./${fileName}`))
}
await Promise.all(promises)
console.log("Files have been downloaded, ready to start.")

View File

@ -1,9 +1,11 @@
const chalk = require("chalk")
const fs = require("fs")
const axios = require("axios")
const path = require("path")
exports.downloadFile = async (url, path) => {
const writer = fs.createWriteStream(path)
exports.downloadFile = async (url, filePath) => {
filePath = path.resolve(filePath)
const writer = fs.createWriteStream(filePath)
const response = await axios({
url,