File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ git_cache_intercept() {
99
99
{
100
100
mkdir -p " ${repo_path} " &&
101
101
cd " ${repo_path} " &&
102
- git init --bare " ${git_quiet} " > " ${git_output} " 2>&1 &&
102
+ git init --bare ${git_quiet} > " ${git_output} " 2>&1 &&
103
103
git remote add origin " ${_git_repo} " > " ${git_output} " 2>&1
104
104
} >&2 || debug " Could not setup ${_git_repo} " && return 1
105
105
else
@@ -135,7 +135,7 @@ git_checkout() {
135
135
136
136
{
137
137
cd " $_target_path "
138
- git init " ${git_quiet} " > " ${git_output} " 2>&1
138
+ git init ${git_quiet} > " ${git_output} " 2>&1
139
139
git config pull.ff only > " ${git_output} " 2>&1
140
140
git remote add origin " $_git_repo " > " ${git_output} " 2>&1
141
141
}
@@ -146,7 +146,7 @@ git_checkout() {
146
146
fi
147
147
git_fetch_ref " ${PWD} /.git" " ${_git_ref} " || \
148
148
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 || \
150
150
error " Unable to checkout ref. Check your Git ref ($_git_ref ) and path ($_git_path )."
151
151
# shellcheck disable=SC2010,SC2012
152
152
if [ " $( ls -A | grep -v ' ^.git$' -c) " = " 0" ]; then
You can’t perform that action at this time.
0 commit comments