chore: Add a newline after the naddr

Signed-off-by: Awiteb <a@4rs.nl>
This commit is contained in:
Awiteb
2025-05-27 08:29:36 +00:00
parent 55a4868813
commit ea862dac5f

View File

@@ -41,6 +41,7 @@ const NOSTR_ADDRESS_FILE_HEADER: &str = r##"# This file contains NIP-19 `naddr`
# to assist client-side discovery. # to assist client-side discovery.
# #
# Empty lines are ignored. Lines starting with "#" are treated as comments. # Empty lines are ignored. Lines starting with "#" are treated as comments.
"##; "##;
/// Arguments for the `repo announce` command /// Arguments for the `repo announce` command
@@ -102,6 +103,7 @@ impl CommandRunner for AnnounceArgs {
.flatten(), .flatten(),
); );
let naddr = utils::repo_naddr(&self.repo_id, user_pubk, &options.relays)?;
let event = EventBuilder::new_git_repo( let event = EventBuilder::new_git_repo(
self.repo_id, self.repo_id,
self.name.map(utils::str_trim), self.name.map(utils::str_trim),
@@ -117,7 +119,6 @@ impl CommandRunner for AnnounceArgs {
.build(user_pubk); .build(user_pubk);
let nevent = utils::new_nevent(event.id.expect("There is an id"), &write_relays)?; let nevent = utils::new_nevent(event.id.expect("There is an id"), &write_relays)?;
let naddr = utils::repo_naddr(user_pubk, &options.relays)?;
if self.address_file { if self.address_file {
let address_path = std::env::current_dir()?.join(NOSTR_ADDRESS_FILE); let address_path = std::env::current_dir()?.join(NOSTR_ADDRESS_FILE);
@@ -132,8 +133,8 @@ impl CommandRunner for AnnounceArgs {
let mut file = fs::OpenOptions::new().append(true).open(&address_path)?; let mut file = fs::OpenOptions::new().append(true).open(&address_path)?;
tracing::info!("Appending naddr '{naddr}' to address file: '{NOSTR_ADDRESS_FILE}'",); tracing::info!("Appending naddr '{naddr}' to address file: '{NOSTR_ADDRESS_FILE}'");
file.write_all(naddr.as_bytes())?; file.write_all(format!("{naddr}\n").as_bytes())?;
tracing::info!("Successfully wrote naddr to address file"); tracing::info!("Successfully wrote naddr to address file");
} }