diff options
author | Vincent Ambo <mail@tazj.in> | 2021-04-12T20·26+0200 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-04-12T21·55+0000 |
commit | f520bd40cab9bae4f8fa26fe36365a7bf9bccd5a (patch) | |
tree | 5f116d10e44b7f3616fb63c28e7de03d81869071 /web/todolist | |
parent | a5591359702b62e4edd7fdbbd135475037aa6727 (diff) |
refactor: Replace 'depotPath' with 'depot.path' r/2497
Instead of having two ways of accessing the path to the depot (one of which was stuttering, depot.depotPath) we settle on only one: depot.path. This was mostly used for NixOS module imports. Co-Authored-By: Florian Klink <flokli@flokli.de> Change-Id: I2c0db23383fc34f6ca76baaad4cc4af2d9dfae15 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2962 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi> Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'web/todolist')
-rw-r--r-- | web/todolist/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
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 '')); |