mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-20 10:21:36 -04:00
9 lines
297 B
Plaintext
Executable File
9 lines
297 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
if ! apk info 2>&1 | grep -q "inotify-tools"; then
|
|
echo "**** Adding swag-auto-reload deps to package install list ****"
|
|
echo "inotify-tools" >> /mod-repo-packages-to-install.list
|
|
else
|
|
echo "**** swag-auto-reload deps already installed, skipping ****"
|
|
fi
|