From 993e93eeee6682babb3e8860dd7db68020d9a91f Mon Sep 17 00:00:00 2001 From: Andrew Helwer Date: Tue, 28 Sep 2021 19:06:05 -0400 Subject: [PATCH] Fix linux build --- cli/src/util.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/src/util.rs b/cli/src/util.rs index 82341492..acd8acbf 100644 --- a/cli/src/util.rs +++ b/cli/src/util.rs @@ -5,6 +5,8 @@ use std::sync::Arc; use std::thread; use tree_sitter::Parser; +#[cfg(unix)] +use anyhow::{anyhow, Context}; #[cfg(unix)] use std::path::PathBuf; #[cfg(unix)]