mirror of
https://github.com/webmin/webmin.git
synced 2026-02-03 14:13:29 +00:00
Fix to try to use single depth when cloning
This commit is contained in:
2
.github/build/functions.bash
vendored
2
.github/build/functions.bash
vendored
@@ -213,7 +213,7 @@ make_prod_repos() {
|
||||
# Webmin or Usermin
|
||||
if [ ! -d "$root_prod" ]; then
|
||||
local repo="webmin/$prod.git"
|
||||
cmd="git clone $GIT_BASE_URL/$repo $VERBOSITY_LEVEL"
|
||||
cmd="git clone --depth 1 $GIT_BASE_URL/$repo $VERBOSITY_LEVEL"
|
||||
eval "$cmd"
|
||||
if [ ! -d "webmin" ]; then
|
||||
cmd="git clone --depth 1 $WEBMIN_REPO \
|
||||
|
||||
Reference in New Issue
Block a user