forked from open-dollar/od-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-docs.sh
executable file
·46 lines (38 loc) · 1.48 KB
/
build-docs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash
root_path="src" # this could be src/interfaces
# generate docs in a temporary directory
temp_folder="technical-docs"
FOUNDRY_PROFILE=docs forge doc --out "$temp_folder"
# edit the SUMMARY after the Interfaces section
# https://stackoverflow.com/questions/67086574/no-such-file-or-directory-when-using-sed-in-combination-with-find
if [[ "$OSTYPE" == "darwin"* ]]; then
sed -i '' -e '/\src/q' docs/src/SUMMARY.md
else
sed -i -e '/\src/q' docs/src/SUMMARY.md
fi
# copy the generated SUMMARY, from the tmp directory, without the first 5 lines
# and paste them after the Interfaces section on the original SUMMARY
tail -n +4 $temp_folder/src/SUMMARY.md >> docs/src/SUMMARY.md
# delete old generated interfaces docs
rm -rf docs/src/$root_path
# there are differences in cp and mv behavior between UNIX and macOS when it comes to non-existing directories
# creating the directory to circumvent them
mkdir -p docs/src/$root_path
# move new generated interfaces docs from tmp to original directory
cp -R $temp_folder/src/$root_path docs/src
# delete tmp directory
rm -rf $temp_folder
# function to replace text in all files (to fix the internal paths)
replace_text() {
for file in "$1"/*; do
if [ -f "$file" ]; then
sed -i "s|$temp_folder/src/||g" "$file"
elif [ -d "$file" ]; then
replace_text "$file"
fi
done
}
# path to the base folder
base_folder="docs/src/$root_path"
# calling the function to fix the paths
replace_text "$base_folder"