Skip to content

Commit

Permalink
cli: Fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
wader committed Sep 12, 2021
1 parent 78eb737 commit 2b8d11d
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions pkg/interp/fq.jq
Original file line number Diff line number Diff line change
Expand Up @@ -440,18 +440,18 @@ def _main:
| _cli_expr_eval($expr; _repl_display)
)
end
)
; # finally
( if _input_io_errors != null then
null | halt_error(_exit_code_input_io_error)
end
| if _input_decode_errors != null then
null | halt_error(_exit_code_input_decode_error)
end
| if _cli_last_expr_error != null then
null | halt_error(_exit_code_expr_error)
end
)
)
; # finally
( if _input_io_errors != null then
null | halt_error(_exit_code_input_io_error)
end
| if _input_decode_errors != null then
null | halt_error(_exit_code_input_decode_error)
end
| if _cli_last_expr_error != null then
null | halt_error(_exit_code_expr_error)
end
)
)
end
);

0 comments on commit 2b8d11d

Please sign in to comment.