# File lib/fastcst/command/list.rb, line 23
23:         def print_readable_path(repo)
24:             path = repo['Path']
25:             if not path
26:                 UI.failure :env, "Your environment does not have a revision path.  Did you delete that variable?"
27:                 return
28:             end
29:             
30:             # build the readable path first
31:             readable_path = []
32:             path.each do |id|
33:                 readable_path << repo.build_readable_name(id)
34:             end
35:             
36:             puts "[ #{readable_path.join('/')} ]"
37:         end