|
throw new Error(`No files found in directory '${dirPath}', if you want to download all folders recursively include the -r flag`); |
In version 1.0.13 this was only a console.log with a nice "return" - we can live with that.
Now the CLI exists with this throw new Error thing :(
And the error message has a ReferenceError because dirPath doesn't exist.
A disaster in an automated setup.
CLI/bin/downloader.js
Line 14 in 8c0b627
In version 1.0.13 this was only a console.log with a nice "return" - we can live with that.
Now the CLI exists with this throw new Error thing :(
And the error message has a ReferenceError because dirPath doesn't exist.
A disaster in an automated setup.