mirror of
https://github.com/lights0123/n-link.git
synced 2024-12-22 18:25:27 +00:00
Maybe make Windows work...?
This commit is contained in:
parent
6a98adc10f
commit
f1a83710b3
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
@ -45,7 +45,12 @@ jobs:
|
|||
with:
|
||||
toolchain: stable
|
||||
- name: install tauri bundler
|
||||
if: runner.os != 'Windows'
|
||||
run: cargo install tauri-bundler || [ $? -eq 101 ]
|
||||
- name: install tauri bundler
|
||||
if: runner.os == 'Windows'
|
||||
run: cargo install tauri-bundler; exit ($LASTEXITCODE -ne 101 -and $LASTEXITCODE -ne 0)
|
||||
shell: powershell -command "& '{0}'"
|
||||
- name: install webkit2gtk (ubuntu only)
|
||||
if: matrix.platform == 'ubuntu-latest'
|
||||
run: |
|
||||
|
|
4
src-tauri/Cargo.lock
generated
4
src-tauri/Cargo.lock
generated
|
@ -736,9 +736,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "libnspire-sys"
|
||||
version = "0.2.5"
|
||||
version = "0.2.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8b2e2124ec360b12b1f23a48b1b477b62840a7833ff377eec8e4c92d18de1c9b"
|
||||
checksum = "5b27b742cdfa366ed887e6f0097fec446642b8c3e8b79c6d4745129d9e3f8b20"
|
||||
dependencies = [
|
||||
"cc",
|
||||
"globwalk",
|
||||
|
|
Loading…
Reference in a new issue