2022-08-10 15:53:01 -04:00

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