Fix Windows build: quote cargo version specifier
Some checks failed
Build App / build-windows (push) Failing after 4m2s
Build App / build-linux (push) Failing after 4m51s

The caret in ^2 needs quoting in cmd shell to avoid being
interpreted as an escape character.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-27 07:45:19 -08:00
parent 5a69b54d5c
commit 03fb832fa2

View File

@@ -113,7 +113,7 @@ jobs:
- name: Install Tauri CLI via cargo
run: |
set "PATH=%USERPROFILE%\.cargo\bin;C:\Program Files\nodejs;%PATH%"
cargo install tauri-cli --version ^2
cargo install tauri-cli --version "^2"
- name: Install frontend dependencies
working-directory: ./app