We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3033035 commit 21454bbCopy full SHA for 21454bb
commands/utils/validate.js
@@ -137,7 +137,11 @@ module.exports = validate_config = function (lt_config) {
137
}
138
139
140
- if ("downloads" in lt_config["run_settings"]) {
+ if (
141
+ "downloads" in lt_config["run_settings"] &&
142
+ lt_config["run_settings"]["downloads"] != ""
143
+ ) {
144
+ console.log(lt_config["run_settings"]);
145
let download_folders = lt_config["run_settings"]["downloads"].split(",");
146
for (folder in download_folders) {
147
if (folder[0] != ".") {
0 commit comments