We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec15591 commit bc08910Copy full SHA for bc08910
entrypoint.sh
@@ -52,14 +52,14 @@ function prepare_json_to_file_flags() {
52
CONSOLE_OUTPUT_FOR_JSON="${INPUT_CONSOLE_OUTPUT}"
53
if [[ -z "${INPUT_OUTPUT}" ]]; then
54
# Results should be printed to console in the selected format
55
- CONSOLE_OUTPUT_FOR_JSON="${INPUT_FORMAT:-cli}"
+ CONSOLE_OUTPUT_FOR_JSON="${INPUT_FORMAT:-table}"
56
# Results should also be stored in a directory
57
OUTPUT_FOR_JSON="orca_results/"
58
fi
59
60
if [[ -z "${INPUT_FORMAT}" ]]; then
61
# The default format should be provided together with the one we are adding
62
- FORMATS_FOR_JSON="cli,json"
+ FORMATS_FOR_JSON="table,json"
63
else
64
if [[ "${INPUT_FORMAT}" == *"json"* ]]; then
65
FORMATS_FOR_JSON="${INPUT_FORMAT}"
0 commit comments