Files
blog/deploy.sh

15 lines
293 B
Bash

#!/bin/bash
clear
echo "Pulling latest from git repo."
git checkout master
git pull
echo "Running hugo and copying the public directory to the /srv/http directory."
cd /home/pi/quickstart
hugo
cp -r /home/pi/quickstart/public/. /srv/http
echo "If there were no errors, I think we did it!"