10 lines
177 B
Bash
Executable file
10 lines
177 B
Bash
Executable file
#!/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"
|