From 2160126f96755126fe83daec2146c86d5e29ea73 Mon Sep 17 00:00:00 2001 From: thespad Date: Sun, 19 Jan 2025 17:34:21 +0000 Subject: [PATCH] Use case-insensitive include just in case (no pun) --- root/etc/s6-overlay/s6-rc.d/svc-swag-auto-reload/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/etc/s6-overlay/s6-rc.d/svc-swag-auto-reload/run b/root/etc/s6-overlay/s6-rc.d/svc-swag-auto-reload/run index f8263dc..4a1f0de 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-swag-auto-reload/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-swag-auto-reload/run @@ -19,7 +19,7 @@ if [[ ${SWAG_AUTORELOAD,,} == "true" ]]; then function wait_for_changes { inotifywait -rq \ --event modify,move,create,delete \ - --include '\.conf$' \ + --includei '\.conf$' \ "${ACTIVE_WATCH[@]}" }