Skip to content

Commit

Permalink
add newline to output
Browse files Browse the repository at this point in the history
  • Loading branch information
OutdatedVersion committed Nov 2, 2020
1 parent 8bcac2b commit f5fdd1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ fn main() {
std::process::exit(1);
}

print!("{}", b64_encoded_json_value_to_string(&secret_data[secret_key]));
println!("{}", b64_encoded_json_value_to_string(&secret_data[secret_key]));
std::process::exit(0);
}

for entry in secret_data.entries() {
let value = b64_encoded_json_value_to_string(entry.1);
print!("{}: {}", entry.0, value);
println!("{}: {}", entry.0, value);
}
}

Expand Down

0 comments on commit f5fdd1b

Please sign in to comment.