From b2397302b0d434852b7c9a19dc0bdd49a4222bcb Mon Sep 17 00:00:00 2001 From: Vishal Telangre Date: Sun, 26 Jul 2020 18:42:25 +0530 Subject: [PATCH] Fix: -h and -v options stopped working (#33) * Fix: -h and -v options stopped working * Bump v0.0.10 --- index.js | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 9c278ec..419c253 100755 --- a/index.js +++ b/index.js @@ -22,6 +22,7 @@ PrerequisitesChecker(function() { cli.enable('version'); cli.setApp(name, version); + cli.parse(); if (!cli.args[0]) { cli.error("Please provide the URL to the album/playlist of songs which you want to download.") diff --git a/package.json b/package.json index 0f26210..84aa531 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "type": "git", "url": "https://github.com/vishaltelangre/music-dl" }, - "version": "0.0.9", + "version": "0.0.10", "description": "Download audio song playlists/albums from multiple song providers!", "main": "index.js", "author": "Vishal Telangre ",