Update 'init/entrypoint.sh'
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Danny Bessems 2020-11-14 14:08:59 +00:00
parent bddf226431
commit 5efdca7b3f
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ if [ "$RUN_ONCE" = "true" ]; then
rsync -az --info=progress "$SOURCE_DIR" "$TARGET_DIR"
else
cat /proc/sys/fs/inotify/max_user_watches
while inotifywait -r -e modify,create,delete,move $SOURCE_DIR; do
while inotifywait -r -e modify,create,delete,move "$SOURCE_DIR"; do
rsync -az --info=progress "$SOURCE_DIR" "$TARGET_DIR"
done
fi