summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authordanieleades <33452915+danieleades@users.noreply.github.com>2023-11-27 10:18:48 +0000
committerGitHub <noreply@github.com>2023-11-27 11:18:48 +0100
commit3c2b61ee7d312f034109522e90a411c9b920e011 (patch)
tree842cc0df8c23cafdca6173569be7a5c561f29d0c /crates
parent2c85161a277a8b754eea529bd71fb0e67f39ac33 (diff)
Run clippy on all features (#2767)
Diffstat (limited to 'crates')
-rw-r--r--crates/typst-cli/src/update.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst-cli/src/update.rs b/crates/typst-cli/src/update.rs
index 3cd65c9d..cde77dbb 100644
--- a/crates/typst-cli/src/update.rs
+++ b/crates/typst-cli/src/update.rs
@@ -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"))]