Bugfix for Alpine Linux

- Install coreutils on Alpine Linux for "mktemp"
This commit is contained in:
hwdsl2 2021-09-14 00:49:13 -05:00
parent 1f9939b8cc
commit f14d903b97
3 changed files with 3 additions and 3 deletions

View File

@ -159,7 +159,7 @@ install_pkgs() {
if [ "$os_type" = "alpine" ]; then
(
set -x
apk add -U -q bash net-tools wget sed grep
apk add -U -q bash coreutils grep net-tools sed wget
) || exiterr "'apk add' failed."
fi
}

View File

@ -154,7 +154,7 @@ install_pkgs() {
if [ "$os_type" = "alpine" ]; then
(
set -x
apk add -U -q bash wget sed grep
apk add -U -q bash coreutils grep sed wget
) || exiterr "'apk add' failed."
fi
}

View File

@ -212,7 +212,7 @@ install_pkgs() {
if [ "$os_type" = "alpine" ]; then
(
set -x
apk add -U -q bash net-tools wget sed grep
apk add -U -q bash coreutils grep net-tools sed wget
) || exiterr "'apk add' failed."
fi
}