Added mydistro definition to fix mktempdir

This commit is contained in:
Olius 2019-12-06 20:59:04 -05:00
parent c19f69d41b
commit 8711a4a318
1 changed files with 3 additions and 0 deletions

3
ghcup
View File

@ -1024,6 +1024,7 @@ download_to_stdout() {
# @DESCRIPTION:
# Makes a temporary directory.
mktempdir() {
mydistro=$(get_distro_alias "$(get_distro_name)")
if test "${mydistro}" = "darwin"; then
debug_message "mktemp -d -t ghcup"
mktemp -d -t ghcup
@ -1031,6 +1032,8 @@ mktempdir() {
debug_message "mktemp -d"
mktemp -d
fi
unset mydistro
}
# @FUNCTION: unpack