replace wget with download script

This commit is contained in:
RayBB 2022-01-16 17:41:33 -05:00
parent ccae867353
commit 8d51d354a9
3 changed files with 14 additions and 3 deletions

12
scripts/downloadFile.ts Normal file
View file

@ -0,0 +1,12 @@
const http = require('https');
const fs = require('fs');
// Could use yargs to have more validation but wanted to keep it simple
const args = process.argv.slice(2);
const FILE_URL = args[0];
const DESTINATION = args[1];
console.log(`Downloading ${FILE_URL} to ${DESTINATION}`)
const file = fs.createWriteStream(DESTINATION);
http.get(FILE_URL, response=>response.pipe(file));