From 5eb5fa49cf9862e99a5bccff8d4ca1a062f81900 Mon Sep 17 00:00:00 2001 From: Sebastian Ullrich Date: Fri, 14 Jun 2024 12:35:14 +0200 Subject: [PATCH] chore: Nix: fix update-stage0-commit --- nix/bootstrap.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/bootstrap.nix b/nix/bootstrap.nix index 1b57f5dda3..3685fdb690 100644 --- a/nix/bootstrap.nix +++ b/nix/bootstrap.nix @@ -178,7 +178,7 @@ rec { ''; }; update-stage0 = - let cTree = symlinkJoin { name = "cs"; paths = [ Init.cTree Lean.cTree ]; }; in + let cTree = symlinkJoin { name = "cs"; paths = [ Init.cTree Lean.cTree Lake.cTree ]; }; in writeShellScriptBin "update-stage0" '' CSRCS=${cTree} CP_C_PARAMS="--dereference --no-preserve=all" ${src + "/script/lib/update-stage0"} '';