Install gems with full paths

This commit is contained in:
Anthony Sottile 2016-10-23 16:12:10 -07:00
parent bbf1f62ed6
commit e001a7d2ba

View file

@ -47,5 +47,6 @@ class PrefixedCommandRunner(object):
def star(self, end):
return tuple(
path for path in os.listdir(self.prefix_dir) if path.endswith(end)
self.path(path)
for path in os.listdir(self.prefix_dir) if path.endswith(end)
)