about summary refs log tree commit diff
path: root/users/Profpatsch/netencode/netencode-mustache.rs
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2021-02-08T02·23+0100
committerProfpatsch <mail@profpatsch.de>2021-02-09T01·36+0000
commit60b79b2d9d07b35496c221ad3651f2d2fee74b21 (patch)
tree0fa7ece086c01d39f3bc81809836090a1d050297 /users/Profpatsch/netencode/netencode-mustache.rs
parent9fe1db6193d512f4a61eff180055f14b7d92579d (diff)
feat(users/Profpatsch/arglib): use exec_helpers for rust r/2192
Change-Id: I3056385eb11e45ae13456f4c47052651ba5fb62f
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2496
Tested-by: BuildkiteCI
Reviewed-by: Profpatsch <mail@profpatsch.de>
Diffstat (limited to 'users/Profpatsch/netencode/netencode-mustache.rs')
-rw-r--r--users/Profpatsch/netencode/netencode-mustache.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/users/Profpatsch/netencode/netencode-mustache.rs b/users/Profpatsch/netencode/netencode-mustache.rs
index 5c7242ed08..ee7bafed22 100644
--- a/users/Profpatsch/netencode/netencode-mustache.rs
+++ b/users/Profpatsch/netencode/netencode-mustache.rs
@@ -37,7 +37,7 @@ fn netencode_to_mustache_data_dwim(t: T) -> Data {
 
 pub fn from_stdin() -> () {
     let data = netencode_to_mustache_data_dwim(
-        arglib_netencode::arglib_netencode(Some(std::ffi::OsStr::new("TEMPLATE_DATA"))).unwrap()
+        arglib_netencode::arglib_netencode("netencode-mustache", Some(std::ffi::OsStr::new("TEMPLATE_DATA")))
     );
     let mut stdin = String::new();
     std::io::stdin().read_to_string(&mut stdin).unwrap();