Show More
@@ -390,7 +390,10 b' class install_symlinked(install):' | |||
|
390 | 390 | def run(self): |
|
391 | 391 | if sys.platform == 'win32': |
|
392 | 392 | raise Exception("This doesn't work on Windows.") |
|
393 | install.run(self) | |
|
393 | ||
|
394 | # Run all sub-commands (at least those that need to be run) | |
|
395 | for cmd_name in self.get_sub_commands(): | |
|
396 | self.run_command(cmd_name) | |
|
394 | 397 | |
|
395 | 398 | # 'sub_commands': a list of commands this command might have to run to |
|
396 | 399 | # get its work done. See cmd.py for more info. |
General Comments 0
You need to be logged in to leave comments.
Login now