From c8f3943d037f3dcab867b2be90c66cb44e53a10e Mon Sep 17 00:00:00 2001 From: Cole Helbling Date: Tue, 25 Jan 2022 11:04:18 -0800 Subject: [PATCH] hydra-module: log files don't have a `.drv` extension --- hydra-module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hydra-module.nix b/hydra-module.nix index c950f872..617b0752 100644 --- a/hydra-module.nix +++ b/hydra-module.nix @@ -461,7 +461,7 @@ in script = '' find ${baseDir}/build-logs -type f -name "*.drv" -mtime +3 -size +0c | xargs -r bzip2 -v -f - find ${baseDir}/runcommand-logs -type f -name "*.drv" -mtime +3 -size +0c | xargs -r bzip2 -v -f + find ${baseDir}/runcommand-logs -type f -mtime +3 -size +0c | xargs -r bzip2 -v -f ''; startAt = "Sun 01:45"; };