Skip to content

Commit bc08910

Browse files
authored
Update entrypoint.sh
1 parent ec15591 commit bc08910

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ function prepare_json_to_file_flags() {
5252
CONSOLE_OUTPUT_FOR_JSON="${INPUT_CONSOLE_OUTPUT}"
5353
if [[ -z "${INPUT_OUTPUT}" ]]; then
5454
# Results should be printed to console in the selected format
55-
CONSOLE_OUTPUT_FOR_JSON="${INPUT_FORMAT:-cli}"
55+
CONSOLE_OUTPUT_FOR_JSON="${INPUT_FORMAT:-table}"
5656
# Results should also be stored in a directory
5757
OUTPUT_FOR_JSON="orca_results/"
5858
fi
5959

6060
if [[ -z "${INPUT_FORMAT}" ]]; then
6161
# The default format should be provided together with the one we are adding
62-
FORMATS_FOR_JSON="cli,json"
62+
FORMATS_FOR_JSON="table,json"
6363
else
6464
if [[ "${INPUT_FORMAT}" == *"json"* ]]; then
6565
FORMATS_FOR_JSON="${INPUT_FORMAT}"

0 commit comments

Comments
 (0)