Lines Matching +full:configure +full:- +full:args
32 def call_fxn(*args, **kwargs): argument
35 result = fxn(*args, **kwargs)
49 cmd = "git rev-parse --abbrev-ref HEAD".split()
54 encoding='UTF-8')
64 cmd = "git remote get-url upstream".split()
69 encoding='UTF-8')
87 encoding='UTF-8',
126 cmd = 'git diff --name-status ' + base_branch
128 cmd = 'git status --porcelain'
140 if ' -> ' in filename:
142 filename = filename.split(' -> ', 2)[1].strip()
232 @status("configure regenerated", modal=True, info=str)
234 """Check if configure has been regenerated."""
235 if 'configure.ac' in file_paths:
236 return "yes" if 'configure' in file_paths else "no"
243 if 'configure.ac' in file_paths:
289 # Regenerated configure, if necessary.
304 parser.add_argument('--travis',
306 args = parser.parse_args() variable
307 if args.travis:
308 travis(args.travis)