diff --git a/doc/hooks/tauri.section.md b/doc/hooks/tauri.section.md index 6804e4b5a055..0eb1740644b4 100644 --- a/doc/hooks/tauri.section.md +++ b/doc/hooks/tauri.section.md @@ -79,6 +79,10 @@ The [bundle type](https://tauri.app/v1/guides/building/) to build. Disables using `tauriBuildHook`. +#### `dontTauriFixup` {#dont-tauri-fixup} + +Disables the `tauriFixupHook` pre fixup phase. + #### `dontTauriInstall` {#dont-tauri-install} Disables using `tauriInstallPostBuildHook` and `tauriInstallHook`. diff --git a/doc/redirects.json b/doc/redirects.json index 47e81a920cda..05275eb771a0 100644 --- a/doc/redirects.json +++ b/doc/redirects.json @@ -2671,6 +2671,9 @@ "dont-tauri-build": [ "index.html#dont-tauri-build" ], + "dont-tauri-fixup": [ + "index.html#dont-tauri-fixup" + ], "dont-tauri-install": [ "index.html#dont-tauri-install" ], diff --git a/pkgs/by-name/ca/cargo-tauri/hook.sh b/pkgs/by-name/ca/cargo-tauri/hook.sh index 51606216cf89..d1f5c61d11df 100644 --- a/pkgs/by-name/ca/cargo-tauri/hook.sh +++ b/pkgs/by-name/ca/cargo-tauri/hook.sh @@ -93,6 +93,8 @@ tauriInstallHook() { } tauriFixupHook() { + echo "Executing tauriFixupHook" + # NOTE: This runs as a preFixupPhase and does not replace the original hook. @fixupScript@ }