blob: ac4ecb826077ff5aa63b66ea543198bc1ff48f00 (
plain)
1
2
3
4
5
6
|
# Setup documents repo
if [ -d "docs/Documents/.git" ]; then
cd docs/Documents && git pull origin main && cd -
else
git clone https://github.com/JustEnoughVCS/Documents.git docs/Documents
fi
|