Update 'update.sh'

This commit is contained in:
Echedelle López Romero 2021-07-22 00:23:49 +00:00
parent 6260af3081
commit 0bc0939b9b
1 changed files with 6 additions and 5 deletions

View File

@ -1,22 +1,23 @@
#!/bin/sh
# Comprobar que existe directorio de la web
directorio="$HOME/web"
if [ "$PWD" != "$directorio" ]
then
cd "$directorio"
fi
# Descargar cambios del repositorio principal
git pull
# Actualizar dependencias de Ruby
bundle && bundle update
# Construir el sitio web
JEKYLL_ENV=production bundle exec jekyll build --trace
# Subir cambios al repositorio principal
git add Gemfile
git add Gemfile.lock
git commit -m "Actualizar Gemfile.lock"
git commit -m "Actualizar Gemfile y Gemfile.lock"
git push origin main