From 8e8adf46b9e8ea9813c18d1c722d7e2a305808b1 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Thu, 17 Oct 2013 22:38:22 -0700 Subject: [PATCH] Condor interface: bug fixes. --- samples/condor/boinc_gahp.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/samples/condor/boinc_gahp.cpp b/samples/condor/boinc_gahp.cpp index df62a13bec..22c8fdcb7f 100644 --- a/samples/condor/boinc_gahp.cpp +++ b/samples/condor/boinc_gahp.cpp @@ -143,7 +143,7 @@ int process_input_files(SUBMIT_REQ& req, string& error_msg) { for (i=0; i::iterator iter = local_files.find(infile.src_path); LOCAL_FILE& lf = iter->second; sprintf(infile.physical_name, "jf_%s", lf.md5); @@ -450,7 +450,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 temp.zip"); + sprintf(buf, "cd %s; unzip temp.zip", req.dir); retval = system(buf); if (retval) { s = string("unzip\\ failed");