diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c8bccb7..0769feb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/src/libs/TauriUtils.ts b/src/libs/TauriUtils.ts index 1c994af..1b9796b 100644 --- a/src/libs/TauriUtils.ts +++ b/src/libs/TauriUtils.ts @@ -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':