mirror of
https://github.com/m-lamonaca/json-to-env.git
synced 2025-04-05 10:26:40 +00:00
fix errors for missing input or output
This commit is contained in:
parent
33aec78b16
commit
5b6736b1fd
1 changed files with 7 additions and 5 deletions
12
src/main.rs
12
src/main.rs
|
@ -22,13 +22,14 @@ fn main() -> Result<()> {
|
||||||
};
|
};
|
||||||
|
|
||||||
let mut buffer = String::new();
|
let mut buffer = String::new();
|
||||||
let filename = args.input.unwrap_or("STDIN".to_string());
|
|
||||||
|
let input = args.input.unwrap_or("STDIN".to_string());
|
||||||
reader
|
reader
|
||||||
.read_to_string(&mut buffer)
|
.read_to_string(&mut buffer)
|
||||||
.with_context(|| format!("Could not read `{filename}`"))?;
|
.with_context(|| format!("Could not read `{input}`"))?;
|
||||||
|
|
||||||
let json: Value = serde_json::from_str(&buffer)
|
let json: Value = serde_json::from_str(&buffer)
|
||||||
.with_context(|| format!("`{filename}` does not contain valid JSON"))?;
|
.with_context(|| format!("`{input}` does not contain valid JSON"))?;
|
||||||
|
|
||||||
let mut vars: Vec<EnvVar> = vec![];
|
let mut vars: Vec<EnvVar> = vec![];
|
||||||
let separator = args.separator.unwrap_or("__".to_string());
|
let separator = args.separator.unwrap_or("__".to_string());
|
||||||
|
@ -36,7 +37,7 @@ fn main() -> Result<()> {
|
||||||
|
|
||||||
let environ = vars
|
let environ = vars
|
||||||
.iter()
|
.iter()
|
||||||
.map(|v| v.to_string())
|
.map(ToString::to_string)
|
||||||
.collect::<Vec<String>>()
|
.collect::<Vec<String>>()
|
||||||
.join("\n");
|
.join("\n");
|
||||||
|
|
||||||
|
@ -50,9 +51,10 @@ fn main() -> Result<()> {
|
||||||
None => Box::new(std::io::stdout()),
|
None => Box::new(std::io::stdout()),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
let output = args.output.unwrap_or("STDOUT".to_string());
|
||||||
writer
|
writer
|
||||||
.write_all(environ.as_bytes())
|
.write_all(environ.as_bytes())
|
||||||
.with_context(|| "".to_string())?;
|
.with_context(|| format!("Could not write to `{output}`"))?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue