Skip to content

Commit 37fc899

Browse files
authored
Fix gen-windows-sys-binding (#1518)
Unwrap on warnings returned
1 parent de7e8d5 commit 37fc899

File tree

1 file changed

+2
-1
lines changed
  • dev-tools/gen-windows-sys-binding/src

1 file changed

+2
-1
lines changed

dev-tools/gen-windows-sys-binding/src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ fn main() {
3636
"--filter",
3737
"--etc",
3838
&filter,
39-
]);
39+
])
40+
.unwrap();
4041

4142
let bindings =
4243
fs::read_to_string(temp_file.path()).expect("failed to read temp windows_sys.rs");

0 commit comments

Comments
 (0)