Home | History | Annotate | Download | only in scripts

Lines Matching full:root_dir

767         root_dir = project_dir
768 one_up_dir = os.path.dirname(root_dir)
770 root_dir = os.path.dirname(root_dir)
773 prefix = os.path.commonprefix([root_dir, project_dir])
778 root_dir = os.path.dirname(fullname)
779 while (root_dir != os.path.dirname(root_dir) and
780 not os.path.exists(os.path.join(root_dir, ".git")) and
781 not os.path.exists(os.path.join(root_dir, ".hg")) and
782 not os.path.exists(os.path.join(root_dir, ".svn"))):
783 root_dir = os.path.dirname(root_dir)
785 if (os.path.exists(os.path.join(root_dir, ".git")) or
786 os.path.exists(os.path.join(root_dir, ".hg")) or
787 os.path.exists(os.path.join(root_dir, ".svn"))):
788 prefix = os.path.commonprefix([root_dir, project_dir])