Skip to content

Commit

Permalink
Updated to 1.0.1 with bug fix to handle forward slash in file and dir…
Browse files Browse the repository at this point in the history
…ectory names
  • Loading branch information
gboysko committed Dec 3, 2015
1 parent 2e02c2e commit 36917be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Arguments.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function processSpec(spec, trackInfo) {
if (token.type === 'TEXT') {
return token.value;
} else if (token.type === 'TOKEN') {
return trackInfo[token.value];
return trackInfo[token.value].replace("/", "_");
}
});
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "emusic-dlm",
"version": "1.0.0",
"version": "1.0.1",
"description": "This command line utility allows you to download music files from the eMusic Service on Linux.",
"author": "Glenn Boysko <[email protected]>",
"scripts": {
Expand Down

0 comments on commit 36917be

Please sign in to comment.