diff options
author | Profpatsch <mail@profpatsch.de> | 2022-05-05T22·41+0200 |
---|---|---|
committer | Profpatsch <mail@profpatsch.de> | 2022-05-07T12·14+0000 |
commit | 9e68eecb37bbec0f4acdac02479a7e88be05c88d (patch) | |
tree | 3324298e42d76d3607225696b42a00ca1ee3f047 | |
parent | 9d3145df488ce09020d1b7b5ea9cf08f66a760b4 (diff) |
fix(.envrc): Add /bin to the PATH of our lazy dispatch r/4015
Otherwise the binaries are not picked up by the shell. Change-Id: Idd6eb8d799d65c42b4e8d76ac1ec3d44064c10fa Reviewed-on: https://cl.tvl.fyi/c/depot/+/5531 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su> Reviewed-by: Jonas Chevalier <zimbatm@zimbatm.com>
-rw-r--r-- | .envrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.envrc b/.envrc index dcd2a5654668..71a05d58b773 100644 --- a/.envrc +++ b/.envrc @@ -2,6 +2,6 @@ # from Nix. out=$(nix-build -A tools.depot-deps --no-out-link) -PATH_add "$out" +PATH_add "$out/bin" watch_file tools/depot-deps.nix |