From 726b81b19251674e149ccfbb1abacbd837fc6db0 Mon Sep 17 00:00:00 2001 From: LinuxWizard42 Date: Wed, 12 Oct 2022 23:08:57 +0300 Subject: Removed files that should not have been included in git --- node_modules/electron-download/lib/cli.js | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100755 node_modules/electron-download/lib/cli.js (limited to 'node_modules/electron-download/lib/cli.js') diff --git a/node_modules/electron-download/lib/cli.js b/node_modules/electron-download/lib/cli.js deleted file mode 100755 index 32e2f12..0000000 --- a/node_modules/electron-download/lib/cli.js +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env node - -'use strict' - -const download = require('./') -const minimist = require('minimist') - -const opts = minimist(process.argv.slice(2)) - -if (opts['strict-ssl'] === false) { - opts.strictSSL = false -} - -download(opts, (err, zipPath) => { - if (err) throw err - console.log('Downloaded zip:', zipPath) - process.exit(0) -}) -- cgit v1.2.3-86-g962b