Skip to content

Commit

Permalink
Add missing separator in log message of openqa-clone-job script
Browse files Browse the repository at this point in the history
  • Loading branch information
Martchus committed Oct 4, 2021
1 parent be5e228 commit 775a5ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/OpenQA/Script/CloneJob.pm
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ sub clone_job_download_assets ($jobid, $job, $remote, $remote_url, $ua, $options
print "downloading\n$from\nto\n$dst\n";
my $r = $ua->mirror($from, $dst);
unless ($r->is_success || $r->code == 304) {
print "$jobid failed: $file", $r->status_line, "\n";
print "$jobid failed: $file, ", $r->status_line, "\n";
die "Can't clone due to missing assets: ", $r->status_line, " \n"
unless $options->{'ignore-missing-assets'};
}
Expand Down

0 comments on commit 775a5ec

Please sign in to comment.