diff options
author | Vincent Ambo <mail@tazj.in> | 2022-02-26T14·37+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-02-26T14·39+0000 |
commit | 2a7f73926a0afcbfd7c071c1613afdeb14b8dcb9 (patch) | |
tree | 820a655ef2dd4d16b7dd23f52e58826951aad832 /tools | |
parent | 5d6de14d78ee6c89f488abccf1c9c81091e2f4b7 (diff) |
chore(tools): Remove deprecated depot-build tool r/3869
This has been superseded by magrathea. Change-Id: Ief4a3d1b81e51e7a9c9a0112584fa7efc8aca63f Reviewed-on: https://cl.tvl.fyi/c/depot/+/5328 Autosubmit: tazjin <tazjin@tvl.su> Reviewed-by: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI
Diffstat (limited to 'tools')
-rw-r--r-- | tools/depot-build.nix | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tools/depot-build.nix b/tools/depot-build.nix deleted file mode 100644 index 62b4c7fc4476..000000000000 --- a/tools/depot-build.nix +++ /dev/null @@ -1,8 +0,0 @@ -# Utility script for building any arbitrary depot path in its folder. -{ pkgs, ... }: - -pkgs.writeShellScriptBin "depot-build" '' - TARGET=$(git rev-parse --show-prefix | sed 's|/$||') - echo "Building //$TARGET" - nix-build -A $(echo $TARGET | sed 's|/|.|g') $(${pkgs.git}/bin/git rev-parse --show-toplevel) -'' |