chore: add missing lib

This commit is contained in:
Florian Bouillon 2025-04-22 13:58:02 +02:00
parent ac90cd54ad
commit 174dfe45f3
Signed by: Florian Bouillon
GPG Key ID: 7676FF78F3BC40EC
2 changed files with 4 additions and 1 deletions

View File

@ -23,6 +23,10 @@ jobs:
with:
cache: false
- name: Install system deps
# `libgtk-3-dev` required by crate `gdk-sys`
run: sudo apt-get install -y libgtk-3-dev
- name: Install Bun dependencies
run: bun install --frozen-lockfile

View File

@ -3,7 +3,6 @@ type Platform = 'linux' | 'windows'
export function getCurrentPlatform(): Platform {
// return 'windows'
const current = import.meta.env.TAURI_ENV_PLATFORM
console.log(import.meta.env)
switch (current) {
case 'linux':