Example #1
0
 def full_path(self):
     '''
     Returns the full path of the project
     '''
     project_file = json_manager.get_ninja_project_file(self.path)
     if not project_file:  # FIXME: If we dont have a project file
         project_file = ''  # we should do SOMETHING! like kill zombies!
     return os.path.join(self.path, project_file)
Example #2
0
 def get_full_path(self):
     '''
     Returns the full path of the project
     '''
     project_file = json_manager.get_ninja_project_file(self.path)
     if not project_file:  # FIXME: If we dont have a project file
         project_file = ''     # we should do SOMETHING! like kill zombies!
     return os.path.join(self.path, project_file)
 def get_full_path(self):
     '''
     Returns the full path of the project
     '''
     project_file = json_manager.get_ninja_project_file(self.path)
     return os.path.join(self.path, project_file)
Example #4
0
 def get_full_path(self):
     '''
     Returns the full path of the project
     '''
     project_file = json_manager.get_ninja_project_file(self.path)
     return os.path.join(self.path, project_file)