diff --git a/poptimal.js b/poptimal.js index 4450fcd..53d2f9d 100644 --- a/poptimal.js +++ b/poptimal.js @@ -112,7 +112,6 @@ async function post_image(image, alt_text, cf) { body: JSON.stringify({ media_ids: [ media_id ] }) }); const bodyjson2 = await resp2.text(); - console.log(bodyjson2); } @@ -120,9 +119,9 @@ async function main() { const argv = yargs(hideBin(process.argv)) .usage("Usage: -s SIZE -o output.png -c config.json") .default('s', 1200) - .default('g', 'config.json').argv; + .default('c', 'config.json').argv; - const cfjson = await promises.readFile(argv.g); + const cfjson = await promises.readFile(argv.c); const cf = JSON.parse(cfjson); const fn = argv.o || String(Date.now()) + '.png'; @@ -153,4 +152,4 @@ async function main() { -main(); \ No newline at end of file +main();