Fix missing function in setup-user script

Add missing getDefaultGitHomebrewURL.
This commit is contained in:
T. R. Bernstein
2025-10-20 13:54:28 +02:00
parent 48fe726f31
commit cd8f2b7c0d

View File

@@ -138,6 +138,10 @@ function getHomebrewDirectoryPath() {
print -- ${homebrew_prefix:-$(getDefaultHomebrewPrefix)}/Homebrew print -- ${homebrew_prefix:-$(getDefaultHomebrewPrefix)}/Homebrew
} }
function getDefaultGitHomebrewURL() {
print -- ${HOMEBREW_BREW_GIT_REMOTE:-https://github.com/Homebrew/brew.git}
}
function configureFolders() { function configureFolders() {
local dirPath local dirPath
for dirPath in ${HOME}/bin ${HOME}/.vim/{backups,swaps}; do for dirPath in ${HOME}/bin ${HOME}/.vim/{backups,swaps}; do