Run clippy on all features (#2767)

This commit is contained in:
danieleades 2023-11-27 10:18:48 +00:00 committed by GitHub
parent 2c85161a27
commit 3c2b61ee7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cargo clippy --workspace --all-targets
- run: cargo clippy --workspace --all-targets --all-features
- run: cargo fmt --check --all
- run: cargo doc --workspace --no-deps

View file

@ -226,7 +226,7 @@ fn update_needed(release: &Release) -> StrResult<bool> {
fn backup_path() -> StrResult<PathBuf> {
#[cfg(target_os = "linux")]
let root_backup_dir = dirs::state_dir()
.or_else(|| dirs::data_dir())
.or_else(dirs::data_dir)
.ok_or("unable to locate local data or state directory")?;
#[cfg(not(target_os = "linux"))]