summaryrefslogtreecommitdiff
path: root/xmake
diff options
context:
space:
mode:
authorOpportunity <[email protected]>2020-01-20 22:52:42 +0800
committerOpportunity <[email protected]>2020-01-20 22:52:42 +0800
commitfac3a78c19a93b6c27bb075cd222cdcb208c4ab5 (patch)
treeece4182a8314af5a033e3187c8826392e2da8e39 /xmake
parenta19f3f194a4d581eb27ea9267b7f6b495345b33c (diff)
revert shallow-submodules
Diffstat (limited to 'xmake')
-rw-r--r--xmake/actions/update/main.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/actions/update/main.lua b/xmake/actions/update/main.lua
index 738624ad3..037ea7e5d 100644
--- a/xmake/actions/update/main.lua
+++ b/xmake/actions/update/main.lua
@@ -349,7 +349,7 @@ function main()
os.mkdir(sourcedir)
http.download(url, path.join(sourcedir, win_installer_name))
else
- git.clone(url, {depth = 1, recurse_submodules = not script_only, shallow_submodules = true, branch = version, outputdir = sourcedir})
+ git.clone(url, {depth = 1, recurse_submodules = not script_only, branch = version, outputdir = sourcedir})
end
return true
end,