Lines Matching refs:directory
26 # git commit information for the CHANGES file's directory. The commit
46 def mkdir_p(directory):
47 """Make the directory, and all its ancestors as required. Any of the
50 if directory == "":
51 # We're being asked to make the current directory.
55 os.makedirs(directory)
57 if e.errno == errno.EEXIST and os.path.isdir(directory):
62 def command_output(cmd, directory):
63 """Runs a command in a directory and returns its standard output stream.
71 cwd=directory,
108 Runs 'git describe', or alternately 'git rev-parse HEAD', in directory. If