You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to use a sidecar with a filename that contains dots, Tauri will not handle it properly.
Additionally, if the sidecar's filename has a prefix that is the same as the name of the Tauri app, running npm run tauri dev will launch an endless number of app windows until you shut down the terminal or close the computer.
Reproduction
For an app called CoolApp, which produces an executable like CoolApp.exe
Working: "externalBin": ["binaries/bugrepro"]
NOT WORKING: "externalBin": ["binaries/bug.repro"]
Throws error Failed to spawn sidecar: Io(Os { code: 2, kind: NotFound, message: "The system cannot find the file specified." })
NOT WORKING: "externalBin": ["binaries/CoolApp.Server"]
Tauri launches the app endlessly until terminal closed or computer shut down
Describe the bug
When trying to use a sidecar with a filename that contains dots, Tauri will not handle it properly.
Additionally, if the sidecar's filename has a prefix that is the same as the name of the Tauri app, running
npm run tauri dev
will launch an endless number of app windows until you shut down the terminal or close the computer.Reproduction
For an app called CoolApp, which produces an executable like
CoolApp.exe
Working:
"externalBin": ["binaries/bugrepro"]
NOT WORKING:
"externalBin": ["binaries/bug.repro"]
Throws error
Failed to spawn sidecar: Io(Os { code: 2, kind: NotFound, message: "The system cannot find the file specified." })
NOT WORKING:
"externalBin": ["binaries/CoolApp.Server"]
Tauri launches the app endlessly until terminal closed or computer shut down
Expected behavior
Filenames with dots supported.
Full
tauri info
outputStack trace
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: