Skip to content

Commit d968006

Browse files
committed
fixed zip not getting deleted
1 parent 76d4f6a commit d968006

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commands/utils/batch/batch_runner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ async function run(lt_config, batches, env) {
140140
lt_config.run_settings.reject_unauthorized
141141
)
142142
.then(function (session_id) {
143-
if (lt_config["run_settings"]["retry_failed"] == false ) {
143+
if (lt_config["run_settings"]["retry_failed"] == undefined || lt_config["run_settings"]["retry_failed"] == false) {
144144
delete_archive(project_file);
145145
}
146146
delete_archive(file_obj["name"]);

0 commit comments

Comments
 (0)