Skip to content

Commit 94b8ccb

Browse files
authored
fix: Minor Update submodules_automation.sh
Quick fix to script to work from current dir instead of looking from root.
1 parent 4463082 commit 94b8ccb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

submodules_automation.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ git pull origin main
77
projects=("UniPath.io" "rowdybot" "react-mui-resume")
88
git submodule foreach git pull origin main
99
for i in "${projects[@]}"; do
10-
rsync submodules/$i/docs/web_docs/* docs/projects/$i
11-
done
10+
rsync ./submodules/$i/docs/web_docs/* ./docs/projects/$i
11+
done

0 commit comments

Comments
 (0)