equal
deleted
inserted
replaced
168 |
168 |
169 def run(self): |
169 def run(self): |
170 cubespath = join(sys.prefix, 'share', 'cubicweb', 'cubes') |
170 cubespath = join(sys.prefix, 'share', 'cubicweb', 'cubes') |
171 self.warn('develop command does not install (legacy) cubes directory (%s)' |
171 self.warn('develop command does not install (legacy) cubes directory (%s)' |
172 % cubespath) |
172 % cubespath) |
173 return super(CWDevelop, self).run() |
173 return develop.develop.run(self) |
174 |
174 |
175 |
175 |
176 # re-enable copying data files in sys.prefix |
176 # re-enable copying data files in sys.prefix |
177 # overwrite MyInstallData to use sys.prefix instead of the egg directory |
177 # overwrite MyInstallData to use sys.prefix instead of the egg directory |
178 MyInstallMoreData = MyInstallData |
178 MyInstallMoreData = MyInstallData |