diff --git a/src/main.rs b/src/main.rs index abe064b..8b5eb01 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,7 +5,6 @@ use std::path::PathBuf; use anyhow::Result; use clap::Parser; -use sd_notify::NotifyState; use serde_json::{Map, Value}; use url_escape; @@ -94,7 +93,5 @@ fn main() -> Result<()> { println!("Wrote secret file to '{}'", output_path.to_string_lossy()); - sd_notify::notify(true, &[NotifyState::Ready])?; - Ok(()) }