From 0b1c203986b040c45c51c16d1e8da3e8e2d80894 Mon Sep 17 00:00:00 2001 From: Joe Eacott Date: Mon, 10 May 2021 15:22:00 -0600 Subject: [PATCH] change curl command to fetch_url func --- bootstrap-salt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index d16d4f0..defc2e7 100644 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -7525,7 +7525,7 @@ install_macosx_git_deps() { install_macosx_stable() { install_macosx_stable_deps || return 1 - /usr/bin/curl "${SALTPKGCONFURL}" > "/tmp/${PKG}" || return 1 + __fetch_url "/tmp/${PKG}" "${SALTPKGCONFURL}" || return 1 /usr/sbin/installer -pkg "/tmp/${PKG}" -target / || return 1