8 lines
149 B
Bash
Executable File
8 lines
149 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Pull the website from git
|
|
cd source && git pull
|
|
|
|
# Compile the markdown to HTML in a volume
|
|
make html OUTPUTDIR=/usr/local/app/output
|