Show More
@@ -3919,14 +3919,8 class TestRunner: | |||
|
3919 | 3919 | install_env.pop('HGWITHRUSTEXT', None) |
|
3920 | 3920 | |
|
3921 | 3921 | # setuptools requires install directories to exist. |
|
3922 | def makedirs(p): | |
|
3923 | try: | |
|
3924 | os.makedirs(p) | |
|
3925 | except FileExistsError: | |
|
3926 | pass | |
|
3927 | ||
|
3928 | makedirs(self._pythondir) | |
|
3929 | makedirs(self._bindir) | |
|
3922 | os.makedirs(self._pythondir, exist_ok=True) | |
|
3923 | os.makedirs(self._bindir, exist_ok=True) | |
|
3930 | 3924 | if self.options.wheel is not None and not WINDOWS: |
|
3931 | 3925 | # the wheel instalation location is not stable, so try to deal with |
|
3932 | 3926 | # that to funnel it back where we need its. |
General Comments 0
You need to be logged in to leave comments.
Login now