mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-19 01:46:10 -04:00
9 lines
226 B
Plaintext
Executable File
9 lines
226 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
if ! command -v git; then
|
|
echo "**** Adding git to package install list ****"
|
|
echo "git" >> /mod-repo-packages-to-install.list
|
|
else
|
|
echo "**** git already installed, skipping ****"
|
|
fi
|