From d1a9dc907feeeb769573e5196fefdc150c597276 Mon Sep 17 00:00:00 2001 From: Olivier Date: Wed, 3 Dec 2025 18:23:46 -0400 Subject: [PATCH] fix: Use maybeMissing for optional paths in fileset --- nix/colorshell.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/colorshell.nix b/nix/colorshell.nix index 3b21840..ab8a6ce 100644 --- a/nix/colorshell.nix +++ b/nix/colorshell.nix @@ -28,8 +28,8 @@ let lib.fileset.unions [ ../flake.nix ../flake.lock - ../result - ../build + (lib.fileset.maybeMissing ../result) + (lib.fileset.maybeMissing ../build) ./. ] );