You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
177 B
Bash

#!/bin/sh
SRC_ROOTDIR="$HOME/src/fef.moe"
WEB_ROOTDIR="$HOME/pub/www"
cd "$SRC_ROOTDIR"
jekyll build
rm -rf "$WEB_ROOTDIR"
cp -r _site "$WEB_ROOTDIR"
gzip -9kr "$WEB_ROOTDIR"