From 190d193d8bc21ce36ed35171720b3925934f1de5 Mon Sep 17 00:00:00 2001 From: Vladislav Forsh Date: Mon, 23 Feb 2026 19:55:23 +0300 Subject: [PATCH] chore(wt): copy iOS local tauri config into new worktrees --- .config/wt.toml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .config/wt.toml diff --git a/.config/wt.toml b/.config/wt.toml new file mode 100644 index 00000000..4164f678 --- /dev/null +++ b/.config/wt.toml @@ -0,0 +1,8 @@ +# Worktrunk project config for codex-monitor +# Docs: https://worktrunk.dev/config/ + +[post-create] +# Fast-start new worktrees by copying selected gitignored files from primary. +copy = "wt step copy-ignored" +# Ensure local iOS signing/config follows every new worktree. +copy_tauri_ios_local_conf = "if [ -f \"../{{ repo }}/src-tauri/tauri.ios.local.conf.json\" ]; then cp \"../{{ repo }}/src-tauri/tauri.ios.local.conf.json\" \"src-tauri/tauri.ios.local.conf.json\"; fi"