Skip to content

Commit 0c0ad14

Browse files
authored
fix
1 parent 6722820 commit 0c0ad14

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

helm-git-plugin.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ git_cache_intercept() {
9999
{
100100
mkdir -p "${repo_path}" &&
101101
cd "${repo_path}" &&
102-
git init --bare "${git_quiet}" >"${git_output}" 2>&1 &&
102+
git init --bare ${git_quiet} >"${git_output}" 2>&1 &&
103103
git remote add origin "${_git_repo}" >"${git_output}" 2>&1
104104
} >&2 || debug "Could not setup ${_git_repo}" && return 1
105105
else
@@ -135,7 +135,7 @@ git_checkout() {
135135

136136
{
137137
cd "$_target_path"
138-
git init "${git_quiet}" >"${git_output}" 2>&1
138+
git init ${git_quiet} >"${git_output}" 2>&1
139139
git config pull.ff only >"${git_output}" 2>&1
140140
git remote add origin "$_git_repo" >"${git_output}" 2>&1
141141
}
@@ -146,7 +146,7 @@ git_checkout() {
146146
fi
147147
git_fetch_ref "${PWD}/.git" "${_git_ref}" || \
148148
error "Unable to fetch remote. Check your Git url."
149-
git checkout "${git_quiet}" "${_git_ref}" >"${git_output}" 2>&1 || \
149+
git checkout ${git_quiet} "${_git_ref}" >"${git_output}" 2>&1 || \
150150
error "Unable to checkout ref. Check your Git ref ($_git_ref) and path ($_git_path)."
151151
# shellcheck disable=SC2010,SC2012
152152
if [ "$(ls -A | grep -v '^.git$' -c)" = "0" ]; then

0 commit comments

Comments
 (0)