diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/bubblegum/default.nix | 2 | ||||
-rw-r--r-- | web/todolist/default.nix | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/web/bubblegum/default.nix b/web/bubblegum/default.nix index aecc701886b5..d9b106dddedd 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 c9efbc03f936..3b4960aa3bbe 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 '')); |