File tree 2 files changed +6
-8
lines changed
2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -134,9 +134,8 @@ Usage: jsonlite command <command-specific-options>
134
134
```
135
135
➜ jsonlite
136
136
JSONlite 1.0.0
137
- set is using: json_reformat (fastest)
138
-
139
- Data directory path: /tmp/jsonlite.data
137
+ - Set is using: json_reformat (fastest)
138
+ - Data directory path: /tmp/jsonlite.data
140
139
141
140
Usage: jsonlite command <command-specific-options>
142
141
Original file line number Diff line number Diff line change @@ -29,15 +29,14 @@ jsonlite_info() {
29
29
jsonlite_version
30
30
31
31
if command -v json_reformat > /dev/null 2>&1 ; then
32
- echo " set is using: json_reformat (fastest)"
32
+ echo " - Set is using: json_reformat (fastest)"
33
33
elif command -v jq > /dev/null 2>&1 ; then
34
- echo " set is using: jq (fast)"
34
+ echo " - Set is using: jq (fast)"
35
35
else
36
- echo " set is using: python -m json.tool (slow )"
36
+ echo " - Set is using: python -m json.tool (slowest )"
37
37
fi
38
38
39
- echo
40
- echo " Data directory path: $JSONLITE_DATA_DIR "
39
+ echo " - Data directory path: $JSONLITE_DATA_DIR "
41
40
echo
42
41
}
43
42
You can’t perform that action at this time.
0 commit comments