diff options
author | liam4 <towerofnix@gmail.com> | 2017-05-30 20:15:36 +0000 |
---|---|---|
committer | liam4 <towerofnix@gmail.com> | 2017-05-30 20:15:36 +0000 |
commit | 865d681f4660e380942698b92e2d00182a1c8728 (patch) | |
tree | 26d4978f40e55e54f50eac49c062d5f17f24f2e3 | |
parent | 9ab94d9a4ba2896a58db7a2f965808b3bb6ab262 (diff) |
Fix a stupid mistake in recursive crawler
-rw-r--r-- | crawl-recursive.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/crawl-recursive.js b/crawl-recursive.js index 2aa4041..8d33ded 100644 --- a/crawl-recursive.js +++ b/crawl-recursive.js @@ -60,8 +60,6 @@ function playlistifyParse(text, absURL) { if (process.argv.length === 2) { console.log('Usage: crawl-recursive http://example.com/example/path') } else { - console.log('Crawling URL: ' + process.argv[2]) - let url = process.argv[2] if (!(url.endsWith('/'))) { |