summaryrefslogtreecommitdiff
path: root/xmake/modules/devel/git/clone.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2022-10-30 11:15:59 +0800
committerruki <[email protected]>2022-10-30 11:15:59 +0800
commit441628171fac4ea543c1c87f66c533237c2067e4 (patch)
treed03ae0e748048921c6cab2b64bf3686a270c1a5a /xmake/modules/devel/git/clone.lua
parentb3f903777bfde99b9d69aaa2183175d3babe289b (diff)
improve git module
Diffstat (limited to 'xmake/modules/devel/git/clone.lua')
-rw-r--r--xmake/modules/devel/git/clone.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/xmake/modules/devel/git/clone.lua b/xmake/modules/devel/git/clone.lua
index 534ae8ac3..f821b8b24 100644
--- a/xmake/modules/devel/git/clone.lua
+++ b/xmake/modules/devel/git/clone.lua
@@ -77,6 +77,12 @@ function main(url, opt)
table.insert(argv, "core.longpaths=true")
end
+ -- set fsmonitor
+ if opt.fsmonitor ~= nil then
+ table.insert(argv, "-c")
+ table.insert(argv, "core.fsmonitor=" .. tostring(opt.fsmonitor))
+ end
+
-- set outputdir
if opt.outputdir then
table.insert(argv, path.translate(opt.outputdir))