mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2025-01-24 03:31:05 +01:00
14 lines
313 B
Bash
Executable File
14 lines
313 B
Bash
Executable File
#!/bin/sh
|
|
TargetRepo="OcttKB.Raw"
|
|
git clone --depth 1 https://gitlab.com/octtspacc/$TargetRepo ./$TargetRepo
|
|
cd ./$TargetRepo
|
|
rm -rf ./Wiki
|
|
tiddlywiki \
|
|
--verbose \
|
|
--load ../public/index.html \
|
|
--output ./Wiki \
|
|
--savewikifolder ./Wiki
|
|
git add .
|
|
git commit -m "OcttKB Cross-Repo Sync (HTML to Raw)"
|
|
git push
|