def get_source_dirs(): '''Get workspace dir and working dir relative to workspace dir''' working_dir = get_cwd() blade_root_dir = find_blade_root_dir(working_dir) working_dir = os.path.relpath(working_dir, blade_root_dir) return blade_root_dir, working_dir
def get_source_dirs(): """Get workspace dir and working dir relative to workspace dir.""" working_dir = get_cwd() root_dir = find_blade_root_dir(working_dir) working_dir = os.path.relpath(working_dir, root_dir) return root_dir, working_dir