summaryrefslogtreecommitdiff
path: root/setup.ps1
blob: dd257855c60d0e9b4e736b78199066455e680a4e (plain)
1
2
3
4
5
6
7
8
# Setup documents repo
if (Test-Path "docs/Documents/.git") {
    Push-Location "docs/Documents"
    git pull origin main
    Pop-Location
} else {
    git clone https://github.com/JustEnoughVCS/Documents.git docs/Documents
}