diff --git a/src/meta_plugin/system.rs b/src/meta_plugin/system.rs index f7f3372..9d59b65 100644 --- a/src/meta_plugin/system.rs +++ b/src/meta_plugin/system.rs @@ -8,7 +8,7 @@ use std::env; use std::process; use uzers::{get_current_uid, get_current_gid, get_current_username, get_current_groupname}; -use crate::common::is_binary; +use crate::common::is_binary::is_binary; use crate::meta_plugin::MetaPlugin; #[derive(Debug, Clone, Default)] diff --git a/src/modes/get.rs b/src/modes/get.rs index 22957b0..0b89b72 100644 --- a/src/modes/get.rs +++ b/src/modes/get.rs @@ -2,7 +2,7 @@ use anyhow::anyhow; use std::io::{Read, Write}; use crate::compression_engine::{CompressionType, get_compression_engine}; -use crate::common::is_binary; +use crate::common::is_binary::is_binary; use clap::Command; use std::path::PathBuf; use std::str::FromStr;