aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornotgne22020-10-29 11:03:09 -0700
committernotgne22020-10-29 11:03:09 -0700
commit0446a2f4319def3a58f8c78912decb9e6545c727 (patch)
tree39ee667bb925886dfd0c4de61c8fe94943d0fe1b
parentdfb77a02bb04bad7970806e5267d9eb1271eea86 (diff)
Add deprecation warning to checkSchema
-rw-r--r--flake.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index fe24754..3ce94e3 100644
--- a/flake.nix
+++ b/flake.nix
@@ -51,8 +51,7 @@
];
};
- # DEPRECATED
- checkSchema = checks.schema;
+ checkSchema = builtins.trace "WARNING: deploy-rs#checkSchema is deprecated" checks.schema;
deployChecks = deploy: builtins.mapAttrs (_: check: check deploy) checks;