The dist dir at which to place the finished distribution.
(self)
| 98 | |
| 99 | @property |
| 100 | def dist_dir(self): |
| 101 | '''The dist dir at which to place the finished distribution.''' |
| 102 | if self.distribution is None: |
| 103 | raise BuildInterruptingException( |
| 104 | 'Internal error: tried to access {}.dist_dir, but {}.distribution ' |
| 105 | 'is None'.format(self, self)) |
| 106 | return self.distribution.dist_dir |
| 107 | |
| 108 | @property |
| 109 | def jni_dir(self): |
nothing calls this directly
no test coverage detected