From 30a44242522b923fb4e489f4adbced1b1e3d1adb Mon Sep 17 00:00:00 2001 From: Victoria Fischer Date: Mon, 8 Jun 2026 18:39:07 +0200 Subject: [PATCH] cargo: add build script that rebuilds when the system prompt has changed --- build.rs | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 build.rs diff --git a/build.rs b/build.rs new file mode 100644 index 0000000..ed78817 --- /dev/null +++ b/build.rs @@ -0,0 +1,3 @@ +fn main() { + println!("cargo::rerun-if-changed=src/system-prompt.txt"); +} \ No newline at end of file