mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2024-12-24 14:01:37 +01:00
e0528394e6
- /GitLab.CrossRepoSync.sh - /GitLab.Main.sh
9 lines
259 B
Bash
Executable File
9 lines
259 B
Bash
Executable File
#!/bin/sh
|
|
TargetRepo="OcttKB.Web"
|
|
git clone --depth 1 https://gitlab.com/octtspacc/$TargetRepo ./Repo-$TargetRepo
|
|
cd ./Repo-$TargetRepo
|
|
cp -v ../Output.tmp/index.html ./public/index.html
|
|
git add .
|
|
git commit -m "OcttKB Cross-Repo Sync (Raw to HTML)"
|
|
git push
|