From 51eba50f43e07c3b15fa0f4119094011c6764144 Mon Sep 17 00:00:00 2001 From: Tim Rogers Date: Sat, 17 Jan 2026 18:53:06 +0000 Subject: [PATCH] Fix build command in "Build" section of Apple App Store instructions The docs currently include a `tauri build --bundles...` command which doesn't work. This switches to use `npm run tauri build -- --bundles...`, matching all the other example commands on the page. --- src/content/docs/distribute/app-store.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/distribute/app-store.mdx b/src/content/docs/distribute/app-store.mdx index 069bb0b3ef..a478b69009 100644 --- a/src/content/docs/distribute/app-store.mdx +++ b/src/content/docs/distribute/app-store.mdx @@ -232,7 +232,7 @@ You must upload your macOS application as a `.pkg` file to the App Store. Run the following command to package your app as a macOS App Bundle (`.app` extension): ``` -tauri build --bundles app --target universal-apple-darwin +npm run tauri build -- --bundles app --target universal-apple-darwin ``` :::note