Add environment variables doc page (#554)

* Fix typos

* Add environment variables doc page

* Remove Breaking Changes page
This commit is contained in:
Jakub Žádník
2021-12-22 21:44:14 +02:00
committed by GitHub
parent 0c920f7d05
commit 061c822c5d
3 changed files with 105 additions and 22 deletions

View File

@ -114,12 +114,12 @@ pub fn env_to_string(
Err(ShellError::MissingParameter("block input".into(), to_span))
}
} else {
// Do not fail here. Must sicceed, otherwise setting a non-string env var would constantly
// Do not fail here. Must succeed, otherwise setting a non-string env var would constantly
// throw errors when running externals etc.
Ok(value.into_string(ENV_SEP, config))
}
} else {
// Do not fail here. Must sicceed, otherwise setting a non-string env var would constantly
// Do not fail here. Must succeed, otherwise setting a non-string env var would constantly
// throw errors when running externals etc.
Ok(value.into_string(ENV_SEP, config))
}