-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Closed
Labels
Description
Describe the bug
Hello,
I get invalid utf-8 sequence of 1 bytes from index 1 error in two cases:
- When running
tauri build. The build process successfully finishes, however this error is shown in the logs. - When trying to check for/install update, I also get
Updater: Signature encoding error: invalid utf-8 sequence of 1 bytes from index 1.
Reproduction
I'm not really sure where to search for the culprit, therefore, unfortunately, I cannot specify the reproduction steps in the new repo. But these are the steps I take in my repository:
Run tauri build
--- OR ---
Run the following script (from the docs)
try {
const { shouldUpdate } = await checkUpdate()
if (shouldUpdate) {
await installUpdate()
await relaunch()
}
} catch (error) {
console.log(error)
}Expected behavior
No response
Platform and versions
Operating System - Mac OS, version 12.0.1 X64
Node.js environment
Node.js - 16.6.2
@tauri-apps/cli - 1.0.0-rc.6
@tauri-apps/api - 1.0.0-rc.2
Global packages
npm - 8.3.0
pnpm - Not installed
yarn - 1.22.11
Rust environment
rustup - 1.24.3
rustc - 1.58.1
cargo - 1.58.0
toolchain - stable-x86_64-apple-darwin
App directory structure
/dist
/node_modules
/public
/src-tauri
/lib
/.git
/src
App
tauri - 1.0.0-rc.4
tauri-build - 1.0.0-rc.4
tao - 0.6.4
wry - 0.13.3
build-type - bundle
CSP - default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'
distDir - ../dist
devPath - http://localhost:8080/
framework - Vue.jsStack trace
No response
Additional context
I'm trying to build the app locally for macOS. I'm also signing and notarizing the build.
Reactions are currently unavailable