We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 174d61c commit 1ffeb5cCopy full SHA for 1ffeb5c
scripts/import.sh
@@ -91,7 +91,11 @@ copyRepoFilesToDest() {
91
}
92
93
renameEcosystemOverview() {
94
- sed -i '' 's/Get the Flow Down - Flow Learning Resources/Ecosystem Overview/g' ./docs/ecosystem/overview/README.md
+ if [[ "$OSTYPE" == "darwin"* ]]; then
95
+ sed -i '' 's/Get the Flow Down - Flow Learning Resources/Ecosystem Overview/g' ./docs/ecosystem/overview/README.md
96
+ else
97
+ sed -i'' 's/Get the Flow Down - Flow Learning Resources/Ecosystem Overview/g' ./docs/ecosystem/overview/README.md
98
+ fi
99
100
101
cloneDocReposToDest
0 commit comments