mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-06-17 13:52:56 -04:00
9 lines
267 B
Plaintext
Executable File
9 lines
267 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
if ! dpkg -s shellcheck >/dev/null 2>&1; then
|
|
echo "**** Adding shellcheck to package install list ****"
|
|
echo "shellcheck" >> /mod-repo-packages-to-install.list
|
|
else
|
|
echo "**** shellcheck already installed, skipping ****"
|
|
fi
|