cleanup repos before publish
This commit is contained in:
parent
973534e796
commit
666cd6aad2
1 changed files with 7 additions and 2 deletions
|
@ -1,23 +1,28 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
if [ "$1" = "test" ]; then
|
if [ "$1" = "test" ]; then
|
||||||
branch=test
|
branch='test'
|
||||||
location='/var/www/html-test'
|
location='/var/www/html-test'
|
||||||
elif [ "$1" = "prod" ]; then
|
elif [ "$1" = "prod" ]; then
|
||||||
branch=main
|
branch='main'
|
||||||
location='/var/www/html'
|
location='/var/www/html'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
rm -rf "$HOME/public_html"
|
||||||
|
|
||||||
cd ~/website || exit
|
cd ~/website || exit
|
||||||
git checkout "$branch"
|
git checkout "$branch"
|
||||||
|
git clean -f
|
||||||
git pull
|
git pull
|
||||||
|
|
||||||
cd ~/dotfiles || exit
|
cd ~/dotfiles || exit
|
||||||
git checkout "$branch"
|
git checkout "$branch"
|
||||||
|
git clean -f
|
||||||
git pull
|
git pull
|
||||||
|
|
||||||
cd ~/blog || exit
|
cd ~/blog || exit
|
||||||
git checkout "$branch"
|
git checkout "$branch"
|
||||||
|
git clean -f
|
||||||
git pull
|
git pull
|
||||||
|
|
||||||
cd ~/dotfiles || exit
|
cd ~/dotfiles || exit
|
||||||
|
|
Loading…
Add table
Reference in a new issue