Skip to content

Commit

Permalink
Tiny improvement to sys (#1385)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Turner committed Feb 13, 2020
1 parent 96985aa commit 473e9f9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crates/nu_plugin_sys/src/sys.rs
Expand Up @@ -87,6 +87,7 @@ async fn host(tag: Tag) -> Value {
if let Ok(platform) = platform_result {
dict.insert_untagged("name", UntaggedValue::string(platform.system()));
dict.insert_untagged("release", UntaggedValue::string(platform.release()));
dict.insert_untagged("version", UntaggedValue::string(platform.version()));
dict.insert_untagged("hostname", UntaggedValue::string(platform.hostname()));
dict.insert_untagged(
"arch",
Expand Down

0 comments on commit 473e9f9

Please sign in to comment.