We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fea4e44 commit fbb7a03Copy full SHA for fbb7a03
1 file changed
tools/bash/build/create-combined-turtle.sh
@@ -22,7 +22,10 @@ COMBINED_FILE="$OUTPUT_DIR/ontology_combined_init.ttl"
22
mkdir -p "$OUTPUT_DIR"
23
24
# Concatenate all TTL files in the directory
25
-cat "$ONTO_DIR"/*.ttl > "$COMBINED_FILE"
+for file in "$ONTO_DIR"/*.ttl; do
26
+ cat "$file" >> "$COMBINED_FILE"
27
+ echo "" >> "$COMBINED_FILE"
28
+done
29
30
# Define output formats
31
FORMATS=("json-ld" "nt" "turtle")
0 commit comments