Place the logs in the tinderbox directory rather than cwd.

This commit is contained in:
Dag-Erling Smørgrav 2003-02-13 11:57:13 +00:00
parent 64e31b67e1
commit 902f48ca91

View File

@ -42,6 +42,7 @@ my %ARCHES = (
);
my $HOST = 'cueball.rtp.freebsd.org';
my $USER = 'des';
my $TBDIR = "/home/$USER/tinderbox";
my $EMAIL = 'src-developers@freebsd.org';
sub report($$$) {
@ -64,7 +65,7 @@ sub tinderbox($$$$) {
my $arch = shift;
my $machine = shift;
my $logfile = "tinderbox-$branch-$arch-$machine.log";
my $logfile = "$TBDIR/tinderbox-$branch-$arch-$machine.log";
my @args = ($tinderbox, @OPTIONS);
push(@args, "--branch=$branch");