Skip to content

Commit 15b08a7

Browse files
committed
Test use of --service all in cds compile
1 parent 2f80959 commit 15b08a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extractors/cds/tools/index-files.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ while IFS= read -r cds_file; do
5454
echo "Processing CDS file $cds_file to: $cds_file.json"
5555
# Avoid using the `-o` (or `--dest`) option as it sends output to a new directory, where we want to
5656
# output to a file in the same directory as the input file but with a .json extension.
57-
if ! $cds_command compile "$cds_file" -2 json --locations > "$cds_file.json" 2> "$cds_file.err"
57+
if ! $cds_command compile "$cds_file" -2 json --locations --service all > "$cds_file.json" 2> "$cds_file.err"
5858
then
5959
stderr_truncated=`grep "^\[ERROR\]" "$cds_file.err" | tail -n 4`
6060
error_message=$'Could not compile the file '"$cds_file"$'.\nReported error(s):\n```\n'"$stderr_truncated"$'\n```'

0 commit comments

Comments
 (0)