mirror of https://github.com/BOINC/boinc.git
Merge pull request #2639 from timtheisen/master
Update HTCondor sample code
This commit is contained in:
commit
7916e67547
|
@ -513,7 +513,7 @@ void handle_fetch_output(COMMAND& c) {
|
|||
sprintf(buf, "get_output_file()\\ returned\\ %d\\ ", retval);
|
||||
s = string(buf) + escape_str(error_msg);
|
||||
} else {
|
||||
sprintf(buf, "cd %s; unzip %s_output.zip", req.dir, req.job_name);
|
||||
sprintf(buf, "cd %s; unzip -o %s_output.zip >/dev/null", req.dir, req.job_name);
|
||||
retval = system(buf);
|
||||
if (retval) {
|
||||
s = string("unzip\\ failed");
|
||||
|
|
Loading…
Reference in New Issue