Lines Matching full:git
40 commit = subprocess.check_output(["git", "--git-dir", gitDir,
45 commit = subprocess.check_output(["git", "--git-dir", gitDir,
71 …parser.add_argument('--git', dest='git', action='store_true', default=False, help="Development bui…
72 …parser.add_argument('--git-dir', dest='gitDir', default=None, help="Use specific git dir for extra…
73 …parser.add_argument('--glsl-git-dir', dest='glslGitDir', default=None, help="Use specific git dir …
74 …spirvtools-dir', dest='spirvToolsGitDir', default=None, help="Use specific git dir for extracting …
75 …vheaders-dir', dest='spirvHeadersGitDir', default=None, help="Use specific git dir for extracting …
85 if (args.releaseName != None) == args.git:
86 print("Either --name and --id, or --git must be specified")
94 defaultGitDir = os.path.normpath(os.path.join(curDir, "..", "..", ".git"))
95 …GitDir = os.path.normpath(os.path.join(curDir, "..", "..", "external", "glslang", "src", ".git"))
96 …Dir = os.path.normpath(os.path.join(curDir, "..", "..", "external", "spirv-tools", "src", ".git"))
97 …ir = os.path.normpath(os.path.join(curDir, "..", "..", "external", "spirv-headers", "src", ".git"))
102 if args.git:
114 glslName = "git-%s" % glslHead
115 elif args.git:
123 spirvToolsName = "git-%s" % spirvToolsHead
124 elif args.git:
132 spirvHeadersName = "git-%s" % spirvHeadersHead
133 elif args.git: