Commit d6017192 authored by Ken Edmundson's avatar Ken Edmundson
Browse files

PROG: corrected error in output control net location

parent 3d462238
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -386,11 +386,12 @@ namespace Isis {
    FileName outputControlName;
    if (!m_outputControlName.isEmpty()) {
      outputControlName
          = FileName(m_project->bundleSolutionInfoRoot() + "/" + m_outputControlName );
          = FileName(m_project->bundleSolutionInfoRoot() + "/" + runTime + "/" +
                     m_outputControlName);
    }
    else {
      outputControlName = FileName(m_project->bundleSolutionInfoRoot() + "/" + runTime + "/Out-" +
                                 runTime + "-" +
      outputControlName
          = FileName(m_project->bundleSolutionInfoRoot() + "/" + runTime + "/Out-" + runTime + "-" +
                     FileName(m_bundleSolutionInfo->inputControlNetFileName()).name());
    }