mirror of
https://github.com/linuxserver/docker-mods.git
synced 2026-03-23 00:05:28 +08: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
|