cargo-tauri: fix hook for darwin builds

A handler with no commands will cause a syntax error.
A simple echo should be enough to fix it.
This commit is contained in:
Stefan Nuernberger
2026-02-01 13:59:09 +01:00
parent 88db5b0738
commit ecd6799194
+2
View File
@@ -93,6 +93,8 @@ tauriInstallHook() {
}
tauriFixupHook() {
echo "Executing tauriFixupHook"
# NOTE: This runs as a preFixupPhase and does not replace the original hook.
@fixupScript@
}