Skip to content

Commit 6a4348c

Browse files
committed
update script for arithmetic functions
1 parent 4c3bb3a commit 6a4348c

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

scripts/settings/autogenerate-settings.sh

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -310,12 +310,17 @@ for i in "${!append_src_files[@]}"; do
310310
fi
311311
done
312312

313-
# --- Append content between <!-- AUTOGENERATED_START --><!-- AUTOGENERATED_END --> tags on the page
314-
insert_src_files=("experimental-beta-settings.md")
313+
# --- Append content between <!--AUTOGENERATED_START--><!--AUTOGENERATED_END--> tags on the page
314+
# position of src -> dest maps based on position
315+
insert_src_files=(
316+
"experimental-beta-settings.md"
317+
"arithmetic-functions.md"
318+
)
315319
insert_dest_files=(
316320
"docs/about-us/beta-and-experimental-features.md"
321+
"docs/sql-reference/functions/arithmetic-functions.md"
317322
)
318-
echo "[$SCRIPT_NAME] Inserting generated markdown content between <!-- AUTOGENERATED_START --> <!-- AUTOGENERATED_END --> tags"
323+
echo "[$SCRIPT_NAME] Inserting generated markdown content between <!--AUTOGENERATED_START--> <!--AUTOGENERATED_END--> tags"
319324
for i in "${!insert_src_files[@]}"; do
320325
src_file="${insert_src_files[i]}"
321326

0 commit comments

Comments
 (0)