9 lines
234 B
Bash
9 lines
234 B
Bash
|
#!/usr/bin/env bash
|
||
|
# this is a script that is used by gohookr (git.alra.uk/alvierahman90/gohookr) to automatically
|
||
|
# update notes.alra.uk when i push a change
|
||
|
set -e
|
||
|
cd `dirname $0`
|
||
|
git pull
|
||
|
cd ..
|
||
|
notes2web.py -o notes.alra.uk notes
|