mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-19 09:53:02 -04:00
240ba62933
Signed-off-by: aptalca <541623+aptalca@users.noreply.github.com>
13 lines
358 B
Plaintext
Executable File
13 lines
358 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
if [[ ! -f /usr/bin/biftool ]]; then
|
|
echo "**** Installing BIF Tool ****"
|
|
curl -fL \
|
|
"https://github.com/rokudev/samples/raw/master/utilities/bif%20tool/biftool_linux.zip" \
|
|
-o /tmp/biftool_linux.zip && \
|
|
cd /tmp && \
|
|
unzip -uo biftool_linux.zip -d /usr/bin
|
|
else
|
|
echo "**** BIF Tool already installed ****"
|
|
fi
|