web/quotes: add hgkeep to static folder

This commit is contained in:
Luke Granger-Brown 2021-01-19 20:42:46 +00:00
parent c62b596078
commit b758c0a96c
2 changed files with 3 additions and 1 deletions

View file

@ -11,6 +11,7 @@ let
ciPackages = prefixAttrs "pkg" (builtins.removeAttrs depot.nix.pkgs [ "grafana-plugins" ]);
ciGrafanaPlugins = prefixAttrs "pkg-grafana-plugins" depot.nix.pkgs.grafana-plugins;
ciDocker = prefixAttrs "docker" ((import ./docker-images.nix).images);
ciWeb = prefixAttrs "web" depot.web;
ciOther = prefixAttrs "other" {
twitterchiver-archiver = depot.go.twitterchiver.archiver;
@ -18,5 +19,6 @@ let
twitternuke = depot.go.twitternuke;
};
in
pkgs.linkFarm "ci" (ciMachines ++ ciPackages ++ ciGrafanaPlugins ++ ciDocker ++ ciOther)
#pkgs.linkFarm "ci" (ciMachines ++ ciPackages ++ ciGrafanaPlugins ++ ciDocker ++ ciWeb ++ ciOther)
pkgs.linkFarm "ci" ciWeb

View file