Skip to content
Snippets Groups Projects

Fixing permissions on scripts that I changed

Merged Ezekiel Dohmen requested to merge ezekiel.dohmen/advligorts:bug_fix into master
3 files
+ 6
1
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -72,7 +72,12 @@ $rcg_parser .= $outputFile . " ";
$rcg_parser .= $filteredOutputFile;
system("sync");
system($rcg_parser);
my $parser_code=system($rcg_parser);
if($parser_code != 0)
{
print "Command $rcg_parser failed with an exit code of $parser_code\n";
exit($parser_code >> 8);
}
system("sync");
# End DIAGNOSTIC
Loading