diff --git a/.github/workflows/cache-factory.yaml b/.github/workflows/cache-factory.yaml index f77218934..630fee619 100644 --- a/.github/workflows/cache-factory.yaml +++ b/.github/workflows/cache-factory.yaml @@ -99,4 +99,5 @@ jobs: run: cargo build --quiet --workspace --all-features --release --target ${{ matrix.settings.target }} - name: Clippy + if: runner.os == 'Linux' run: cargo clippy --workspace --all-features --target ${{ matrix.settings.target }} diff --git a/apps/tauri/src-tauri/build.rs b/apps/tauri/src-tauri/build.rs index 9b68f7a6c..62e760d6f 100644 --- a/apps/tauri/src-tauri/build.rs +++ b/apps/tauri/src-tauri/build.rs @@ -64,7 +64,10 @@ fn main() { .expect("Could not find workspace directory"); let daemon_source = format!("{}/target/{}/sd-daemon", workspace_dir, profile); - let daemon_target = format!("{}/target/{}/sd-daemon-{}", workspace_dir, profile, target_triple); + let daemon_target = format!( + "{}/target/{}/sd-daemon-{}", + workspace_dir, profile, target_triple + ); if std::path::Path::new(&daemon_source).exists() { // Remove existing file if it exists