##// END OF EJS Templates
don't give up on weird os names...
MinRK -
Show More
@@ -93,13 +93,10 b' def cleanup():'
93 93 # Handle OS specific things
94 94 #-------------------------------------------------------------------------------
95 95
96 if os.name == 'posix':
97 os_name = 'posix'
98 elif os.name in ['nt','dos']:
96 if os.name in ('nt','dos'):
99 97 os_name = 'windows'
100 98 else:
101 print('Unsupported operating system:',os.name)
102 sys.exit(1)
99 os_name = os.name
103 100
104 101 # Under Windows, 'sdist' has not been supported. Now that the docs build with
105 102 # Sphinx it might work, but let's not turn it on until someone confirms that it
General Comments 0
You need to be logged in to leave comments. Login now