Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added command to override default download path #174

Merged
merged 4 commits into from Nov 3, 2014
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file or symbol
Failed to load files and symbols.

Always

Just for now

Next

Added command to override default tmp path

  • Loading branch information
opfl
opfl committed Nov 2, 2014
commit 8cf42a316711fd98600fad841f1fea02550ff697
@@ -30,6 +30,7 @@ var argv = minimist(process.argv.slice(2), {
i: 'index',
n: 'no-quit',
r: 'remove',
d: 'default',
q: 'quiet',
h: 'help',
v: 'version'
@@ -94,6 +95,7 @@ if (argv.help || !torrentId) {
-i, --index stream a particular file from torrnet (by index)
-n, --no-quit do not quit webtorrent on vlc exit
-r, --remove remove downloaded files on exit
-d, --default [path] overrides the default tmp directory
-q, --quiet silence stdout
-h, --help display this help message
-v, --version print the current version
@@ -154,7 +156,7 @@ function remove (cb) {
client.destroy(cb)
}

var torrent = client.add(torrentId)
var torrent = client.add(torrentId, (argv.default ? { tmp: argv.default } : {}))

torrent.on('infoHash', function () {
function updateMetadata () {
@@ -144,6 +144,8 @@ WebTorrent.prototype.download = function (torrentId, opts, ontorrent) {
opts.client = self
opts.storage = opts.storage || self.storage

if(opts.tmp) opts.storageOpts = { tmp: opts.tmp };

var torrent = new Torrent(torrentId, extend({ client: self }, opts))
self.torrents.push(torrent)

ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.