1
0
Fork 0
mirror of https://github.com/NixOS/hydra.git synced 2024-10-18 17:02:28 -04:00

Don't pass an undefined input

This commit is contained in:
Eelco Dolstra 2013-08-12 18:15:11 +02:00
parent d96df42c03
commit 182f725612

View file

@ -89,7 +89,7 @@ sub fetchInputBuild {
if (!defined $prevBuild || !isValidPath(getMainOutput($prevBuild)->path)) { if (!defined $prevBuild || !isValidPath(getMainOutput($prevBuild)->path)) {
print STDERR "input `", $name, "': no previous build available\n"; print STDERR "input `", $name, "': no previous build available\n";
return undef; return ();
} }
#print STDERR "input `", $name, "': using build ", $prevBuild->id, "\n"; #print STDERR "input `", $name, "': using build ", $prevBuild->id, "\n";