Ok, starting second run, a lot of stuff fixed up

This commit is contained in:
Your Name 2017-04-18 19:29:48 -04:00
parent 12c56bdc00
commit 7eb15542a5
2 changed files with 13 additions and 0 deletions

Binary file not shown.

13
setsuccess.pl Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env perl
use 5.24.0;
use Data::Dumper;
use Storable;
my $data = retrieve 'everything.stor';
my $module = $ARGV[0];
$data->{jobstatus}{$module}={tested => 1, status => "success"};
store $data, 'everything.stor';