mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-30 08:26:59 +02:00
13 lines
394 B
Bash
13 lines
394 B
Bash
#!/bin/sh
|
|
|
|
# In pre-commit, PWD is set to the root of the repo
|
|
# https://longair.net/blog/2011/04/09/missing-git-hooks-documentation/
|
|
ROOT_DIR="$PWD"
|
|
|
|
# If any README file has been changed, update the website
|
|
git status -s | grep ' README\| readme\| build-website.js' > /dev/null 2>&1
|
|
readmeStatus=$?
|
|
if [ $readmeStatus -eq 0 ]; then
|
|
node "$ROOT_DIR/Tools/build-website.js"
|
|
git add docs
|
|
fi |