Skip to content
Snippets Groups Projects

Write `get-file` and commands to get the list of blocks from another node

2 files
+ 108
0
Compare changes
  • Side-by-side
  • Inline

Files

+ 8
0
export def exit_on_error []: closure -> record<stdout: string, stderr: string> {
let res = do $in | complete
if $res.exit_code != 0 {
error make --unspanned { msg: $res.stderr }
}
$res | reject exit_code
}
\ No newline at end of file
Loading