about summary refs log tree commit diff
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/bubblegum/default.nix2
-rw-r--r--web/todolist/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/web/bubblegum/default.nix b/web/bubblegum/default.nix
index aecc701886..d9b106ddde 100644
--- a/web/bubblegum/default.nix
+++ b/web/bubblegum/default.nix
@@ -207,7 +207,7 @@ let
       ] ++ [
         "${bins.nint}"
         # always pass depot so scripts can use this library
-        "--arg depot '(import ${depot.depotPath} {})'"
+        "--arg depot '(import ${depot.path} {})'"
       ]);
     in runExecline.local drvName {} [
       "importas" "out" "out"
diff --git a/web/todolist/default.nix b/web/todolist/default.nix
index c9efbc03f9..3b4960aa3b 100644
--- a/web/todolist/default.nix
+++ b/web/todolist/default.nix
@@ -35,7 +35,7 @@ let
   };
 
   allTodos = fromJSON (readFile (runCommandNoCC "depot-todos.json" {} ''
-    ${ripgrep}/bin/rg --json 'TODO\(\w+\):.*$' ${depot.depotPath} | \
+    ${ripgrep}/bin/rg --json 'TODO\(\w+\):.*$' ${depot.path} | \
       ${jq}/bin/jq -s -f ${./extract-todos.jq} > $out
   ''));