Revert "build: Attempt to add deb musl build."

This reverts commit 07be4261b9.
This commit is contained in:
andy.boot
2026-01-08 22:41:34 +00:00
parent 7a57cb97d7
commit bdd85b9bf4
3 changed files with 1 additions and 13 deletions
-9
View File
@@ -38,7 +38,6 @@ pub struct Config {
pub files0_from: Option<String>,
pub number_of_lines: Option<usize>,
pub files_from: Option<String>,
pub collapse: Option<Vec<String>>,
}
impl Config {
@@ -178,14 +177,6 @@ impl Config {
pub fn get_changed_time_operator(&self, options: &Cli) -> Option<(Operator, i64)> {
get_filter_time_operator(options.ctime.as_ref(), get_current_date_epoch_seconds())
}
pub fn get_collapse(&self, options: &Cli) -> Option<Vec<String>> {
if self.collapse.is_none() {
options.collapse.clone()
} else {
self.collapse.clone()
}
}
}
fn get_current_date_epoch_seconds() -> i64 {