Skip to content

Commit 5d1b48a

Browse files
fixed dataset description filepath
1 parent 204f60c commit 5d1b48a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: goa/goa.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ function run(){
7070
}
7171

7272
$gz = (strstr(parent::getParameterValue('output_format'),".gz") === FALSE)?false:true;
73-
$ofile = $odir."goa_".$file.".".parent::getParameterValue('output_format');
73+
$ofile = "goa_".$file.".".parent::getParameterValue('output_format');
7474

7575
parent::setReadFile($lfile, TRUE);
76-
parent::setWriteFile($ofile, $gz);
76+
parent::setWriteFile($odir.$ofile, $gz);
7777

7878
echo "processing $file ... ";
7979
$this->process($file);

0 commit comments

Comments
 (0)