Merge pull request #2639 from timtheisen/master

Update HTCondor sample code
This commit is contained in:
David Anderson 2018-08-07 20:25:30 -07:00 committed by GitHub
commit 7916e67547
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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");