-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild-docs.sh
executable file
·61 lines (49 loc) · 1.94 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/bash
root_path="solidity/interfaces"
core_path="node_modules/@defi-wonderland/prophet-core"
# generate docs in a temporary directory
temp_folder="technical-docs"
mkdir -p ./solidity/contracts/core
mkdir -p ./solidity/interfaces/core
cp -r $core_path/solidity/contracts/* ./solidity/contracts/core
cp -r $core_path/solidity/interfaces/* ./solidity/interfaces/core
FOUNDRY_PROFILE=docs forge doc --out "$temp_folder"
rm -rf ./solidity/contracts/core
rm -rf ./solidity/interfaces/core
# 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 '/Interfaces/q' docs/src/SUMMARY.md
else
sed -i -e '/Interfaces/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 +5 $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/solidity/
# 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
if [[ "$OSTYPE" == "darwin"* ]]; then
sed -i '' "s|$temp_folder/src/||g" "$file"
else
sed -i "s|$temp_folder/src/||g" "$file"
fi
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"