# File lib/fastcst/repo.rb, line 277
277:         def find_meta_data(uuid)
278:             md_file = File.join(@root_dir, uuid, "meta-data.yaml")
279:         
280:             # grep for the first file with .md, should only be one
281:             if File.exists? md_file
282:                 return md_file
283:             else
284:                 return nil
285:             end
286:         end