Show More
@@ -390,7 +390,10 b' class install_symlinked(install):' | |||||
390 | def run(self): |
|
390 | def run(self): | |
391 | if sys.platform == 'win32': |
|
391 | if sys.platform == 'win32': | |
392 | raise Exception("This doesn't work on Windows.") |
|
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 | # 'sub_commands': a list of commands this command might have to run to |
|
398 | # 'sub_commands': a list of commands this command might have to run to | |
396 | # get its work done. See cmd.py for more info. |
|
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