split up client scripts

This commit is contained in:
liquidex 2023-08-27 22:33:54 +02:00
parent bb87e965da
commit 151ad102dd
2 changed files with 20 additions and 13 deletions

View file

@ -6,16 +6,4 @@ echo
set_color white --bold; echo "* Running editor"; set_color normal
eval $EDITOR content/index.tree
echo
set_color white --bold; echo "* Fixing the tree"; set_color normal
cargo run -p treehouse fix-all --apply
echo
set_color white --bold; echo "* Committing changes"; set_color normal
git add content
git commit
git push
echo
set_color white --bold; echo "* Uploading to server"; set_color normal
fish admin/client_sync.fish
fish admin/client_push.fish

19
admin/client_push.fish Normal file
View file

@ -0,0 +1,19 @@
#!/usr/bin/env fish
cd $TREEHOUSE_PATH
echo
set_color white --bold; echo "* Fixing the tree"; set_color normal
cargo run -p treehouse fix-all --apply
echo
set_color white --bold; echo "* Committing changes"; set_color normal
git add \
content static template \
treehouse.toml
git commit
git push
echo
set_color white --bold; echo "* Uploading to server"; set_color normal
fish admin/client_sync.fish