mirror of
https://github.com/m-lamonaca/json-to-env.git
synced 2025-04-05 10:26:40 +00:00
lock stdout for faster writes
This commit is contained in:
parent
c42a606930
commit
cfa0b5c8a2
1 changed files with 220 additions and 221 deletions
|
@ -41,13 +41,13 @@ fn main() -> Result<()> {
|
|||
.join("\n");
|
||||
|
||||
let mut writer: Box<dyn Write> = match args.output {
|
||||
None => Box::new(std::io::stdout().lock()),
|
||||
Some(ref filename) => {
|
||||
let file = File::create(filename)
|
||||
.with_context(|| format!("Could not open file `{filename}`"))?;
|
||||
|
||||
Box::new(BufWriter::new(file))
|
||||
}
|
||||
None => Box::new(std::io::stdout()),
|
||||
};
|
||||
|
||||
let output = args.output.unwrap_or("STDOUT".to_string());
|
||||
|
@ -105,7 +105,6 @@ impl JsonParser {
|
|||
|
||||
struct EnvVar(String, Value);
|
||||
|
||||
|
||||
impl Display for EnvVar {
|
||||
fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||
match self.1 {
|
||||
|
|
Loading…
Add table
Reference in a new issue