Build machine to pick up latest buildall.pl every time.

This commit is contained in:
David Brown 2016-07-01 15:32:18 +01:00
parent ec7888859c
commit c7984ffdac
2 changed files with 12 additions and 10 deletions

View file

@ -42,6 +42,7 @@ sub logged {
} }
unlink glob "log/*";
for my $machine (sort keys %machines) { for my $machine (sort keys %machines) {
my ($login, $sudo, $dir) = @{$machines{$machine}}; my ($login, $sudo, $dir) = @{$machines{$machine}};

View file

@ -40,7 +40,8 @@ if ($child) {
} else { } else {
# child process # child process
close(STDIN); close(STDOUT); close(STDERR); close(STDIN); close(STDOUT); close(STDERR);
exec 'perl /var/lib/nethserver/ibay/githubhook/buildall.pl >/tmp/buildall.log'; system 'wget https://raw.githubusercontent.com/vishaps/voc/v2docs/src/tools/make/buildall.pl';
exec 'perl buildall.pl >/tmp/buildall.log';
exit; exit;
} }