Lines Matching refs:dest_dir
157 dest_dir = os.path.normpath(self.repos[name].get("dest_dir", "."))
158 self.repos[name]["dest_dir"] = "." if not dest_dir else dest_dir
262 dest_dir = repo['dest_dir']
263 if dest_dir != ".":
264 extract_dir = os.path.join(os.getcwd(), dest_dir)
362 if 'hook' in repo or dest_dir != ".":
390 if dest_dir != ".":
391 parent = os.path.dirname(dest_dir)
395 …gs -0 -I SOURCE mv SOURCE .git/tmptree && mkdir -p %s && mv .git/tmptree %s' % (parent, dest_dir)])
408 subdir=dest_dir)
681 dest_dir = repo['dest_dir']
690 if dest_dir != ".":
691 prefix = "--src-prefix=a/%s/ --dst-prefix=b/%s/" % (dest_dir, dest_dir)
710 p = "%s/%s" % (dest_dir, path) if dest_dir != '.' else path
881 dest_dir = conf.repos[name]['dest_dir']
882 if dest_dir != ".":
883 filerange_root = '%s -x "%s/*"' % (filerange_root, dest_dir)
886 dest_dir = conf.repos[name]['dest_dir']
888 if dest_dir == ".":
891 …mat-patch --no-prefix -n1 --stdout %s^..%s -- %s > %s" % (commit, commit, dest_dir, patch_filename)
969 dest_dir = repo['dest_dir']
1137 apply_commit(parent, rev, largs, wargs, dest_dir, file_filter=file_filter)
1232 def apply_commit(parent, rev, largs, wargs, dest_dir, file_filter=None): argument
1237 if not dest_dir:
1238 dest_dir = "."
1275 target = os.path.join(wargs["destdir"], dest_dir)
1291 size_next = len(quoted_next) + len(dest_dir) + 1
1304 cmd = "git add -f".split() + [os.path.join(dest_dir, x) for x in unquoted_args]
1309 if dest_dir:
1310 path = os.path.join(dest_dir, path)
1311 …runcmd("git rm -f --ignore-unmatch".split() + [os.path.join(dest_dir, x) for x in delete], **wargs)