We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 204f60c commit 5d1b48aCopy full SHA for 5d1b48a
goa/goa.php
@@ -70,10 +70,10 @@ function run(){
70
}
71
72
$gz = (strstr(parent::getParameterValue('output_format'),".gz") === FALSE)?false:true;
73
- $ofile = $odir."goa_".$file.".".parent::getParameterValue('output_format');
+ $ofile = "goa_".$file.".".parent::getParameterValue('output_format');
74
75
parent::setReadFile($lfile, TRUE);
76
- parent::setWriteFile($ofile, $gz);
+ parent::setWriteFile($odir.$ofile, $gz);
77
78
echo "processing $file ... ";
79
$this->process($file);
0 commit comments