diff options
| -rw-r--r-- | .gitignore | 6 | ||||
| -rwxr-xr-x | .gitmodules | 4 | ||||
| -rwxr-xr-x | setup.sh | 6 |
3 files changed, 9 insertions, 7 deletions
@@ -23,9 +23,9 @@ **/target/ -################## -### SUBMODULES ### -################## +################# +### DOCUMENTS ### +################# # JustEnoughVCS Docs /docs/Documents diff --git a/.gitmodules b/.gitmodules deleted file mode 100755 index af0369d..0000000 --- a/.gitmodules +++ /dev/null @@ -1,4 +0,0 @@ -[submodule "built-in-documents"] - path = docs/Documents - url = https://github.com/JustEnoughVCS/Documents - branch = main diff --git a/setup.sh b/setup.sh new file mode 100755 index 0000000..ac4ecb8 --- /dev/null +++ b/setup.sh @@ -0,0 +1,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 |
