Bump version and update Changes
[gruntmaster-daemon.git] / lib / Gruntmaster / Daemon.pm
index 4c3d49294d6c1ff8b109b1500688673c24230e4d..cb41e0d19f5e8bec50f080980b35fbfe3d78cba1 100644 (file)
@@ -4,7 +4,7 @@ use 5.014000;
 use strict;
 use warnings;
 
-our $VERSION = '5999.000_003';
+our $VERSION = '5999.000_004';
 
 use Gruntmaster::Daemon::Constants qw/ERR/;
 use Gruntmaster::Daemon::Format qw/prepare_files/;
@@ -23,6 +23,9 @@ use constant PAGE_SIZE => 10;
 use constant FORMAT_EXTENSION => {
        C => 'c',
        CPP => 'cpp',
+       GCCGO => 'go',
+       GOLANG => 'go',
+       HASKELL => 'hs',
        MONO => 'cs',
        JAVA => 'java',
        PASCAL => 'pas',
@@ -140,7 +143,7 @@ sub process{
        $jobr->update({
                result => $meta->{result},
                result_text => $meta->{result_text},
-               results => encode_json $meta->{results},
+               ($meta->{results} ? (results => encode_json $meta->{results}) : ()),
                $errors ? (errors => $errors) : ()
        });
 
This page took 0.010291 seconds and 4 git commands to generate.