summaryrefslogtreecommitdiff
path: root/xmake/modules/devel/git/submodule/update.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2019-06-27 00:38:18 +0800
committerruki <[email protected]>2019-06-26 21:51:08 +0800
commit78aff8d5199448d604c8e9456063f9550d00c6b6 (patch)
tree3d0c6a08ae93caf1c0cb6bf6fd9e4001f6800de6 /xmake/modules/devel/git/submodule/update.lua
parent6b6fdf451392f5519ff8b8c99bb5df0692c18b36 (diff)
fix xmake update
Diffstat (limited to 'xmake/modules/devel/git/submodule/update.lua')
-rw-r--r--xmake/modules/devel/git/submodule/update.lua77
1 files changed, 77 insertions, 0 deletions
diff --git a/xmake/modules/devel/git/submodule/update.lua b/xmake/modules/devel/git/submodule/update.lua
new file mode 100644
index 000000000..403bf112d
--- /dev/null
+++ b/xmake/modules/devel/git/submodule/update.lua
@@ -0,0 +1,77 @@
+--!A cross-platform build utility based on Lua
+--
+-- Licensed under the Apache License, Version 2.0 (the "License");
+-- you may not use this file except in compliance with the License.
+-- You may obtain a copy of the License at
+--
+-- http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing, software
+-- distributed under the License is distributed on an "AS IS" BASIS,
+-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+-- See the License for the specific language governing permissions and
+-- limitations under the License.
+--
+-- Copyright (C) 2015 - 2019, TBOOX Open Source Group.
+--
+-- @author ruki
+-- @file update.lua
+--
+
+-- imports
+import("core.base.option")
+import("lib.detect.find_tool")
+
+-- update submodule
+--
+-- @param opt the argument options, e.g. repodir, init, remote, force, checkout, merge, rebase, recursive, reference, pathes
+--
+-- @code
+--
+-- import("devel.git.submodule")
+--
+-- submodule.update("master", {repodir = "/tmp/xmake", init = true, remote = true})
+-- submodule.update("v1.0.1", {repodir = "/tmp/xmake", recursive = true, reference = "xxx", pathes = "xxx"})
+--
+-- @endcode
+--
+function main(opt)
+
+ -- init options
+ opt = opt or {}
+
+ -- find git
+ local git = find_tool("git")
+ if not git then
+ return
+ end
+
+ -- init argv
+ local argv = {"submodule", "update"}
+ for _, name in ipairs({"init", "remote", "force", "checkout", "merge", "rebase", "recursive"}) do
+ if opt[name] then
+ table.insert(argv, "--" .. name)
+ end
+ end
+ if opt.reference then
+ table.insert(argv, "--reference")
+ table.insert(argv, opt.reference)
+ end
+ if opt.pathes then
+ table.join2(argv, opt.pathes)
+ end
+
+ -- enter repository directory
+ local oldir = nil
+ if opt.repodir then
+ oldir = os.cd(opt.repodir)
+ end
+
+ -- submodule it
+ os.vrunv(git.program, argv)
+
+ -- leave repository directory
+ if oldir then
+ os.cd(oldir)
+ end
+end