1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-31 09:24:31 +03:00

Trigger a rebuild when the migration files change

This commit is contained in:
Quentin Gliech
2021-09-24 19:08:52 +02:00
parent e9158382ef
commit 8e34dd3778

4
crates/core/build.rs Normal file
View File

@ -0,0 +1,4 @@
fn main() {
// trigger recompilation when a new migration is added
println!("cargo:rerun-if-changed=migrations");
}