Improved the runtime synch monitor.

This commit is contained in:
Cotes Chung 2019-11-18 21:37:09 +08:00
parent 5a4803a3d7
commit d634a64c4f
1 changed files with 4 additions and 3 deletions

View File

@ -5,11 +5,11 @@
# © 2019 Cotes Chung
# MIT Licensed
# $1 -> the origin filen with absolute path.
# $1 -> the origin file with absolute path.
# $2 -> the origin sync directory
# $3 -> the destination sync direcotry
# Pass the system temp file
# Omit the system temp file
if [[ ! -f $1 ]]; then
exit 0
fi
@ -32,5 +32,6 @@ if [[ -f "$1" ]]; then
fi
if [[ $related_dir == "_posts" ]]; then
python $3/_scripts/py/pages_generator.py
python $3/_scripts/py/init_all.py
python $3/_scripts/py/update_posts_lastmod.py -f "$dest/$(basename $1)" -t fs
fi