# File lib/fastcst/command.rb, line 59
59:     def Command.derivativeDirs
60:         repo_dir = Repository::Repository.search
61:         if repo_dir
62:             plugin_dir = File.join(File.expand_path(repo_dir), "plugins")
63:             # we should now have a working plugin dir, return it
64:             return [plugin_dir]
65:         end
66:         
67:         return []
68:     end