fix: Rebuild program upon any changes to command directory

This commit is contained in:
Liam 2024-08-10 19:55:36 -07:00
parent c18c76c694
commit d4a3889e00
No known key found for this signature in database

4
build.rs Normal file
View File

@ -0,0 +1,4 @@
fn main() {
// Rebuild program if any file in commands directory changes.
println!("cargo:rerun-if-changed=src/commands");
}