diff options
author | Griffin Smith <grfn@gws.fyi> | 2021-11-13T14·48-0500 |
---|---|---|
committer | grfn <grfn@gws.fyi> | 2021-11-13T15·57+0000 |
commit | 283310470810524f5e2bc30731bee3fa76775179 (patch) | |
tree | ebe22e15b8d9cbc67e1c864fbac061b768ab7798 /users | |
parent | 98397b8515c83ca2c4caf0a3e9ea3556aac736d7 (diff) |
chore(gs/xanthous): Don't include docs in source closure r/3059
Change-Id: Ib6f2604096fa519f37ec4a2ce762229abca16b26 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3866 Reviewed-by: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
Diffstat (limited to 'users')
-rw-r--r-- | users/grfn/xanthous/default.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/users/grfn/xanthous/default.nix b/users/grfn/xanthous/default.nix index 90dd5870d7b8..c0eca446c9ed 100644 --- a/users/grfn/xanthous/default.nix +++ b/users/grfn/xanthous/default.nix @@ -9,6 +9,7 @@ let path = ./.; filter = path: type: !(type == "directory" && builtins.baseNameOf path == "server") + && !(type == "directory" && builtins.baseNameOf path == "docs") && (ignore path type || builtins.baseNameOf path == "package.yaml"); }; |