Merge pull request #171 from YOUSIKI/master

Check platform correctly
This commit is contained in:
K4YT3X 2019-11-30 19:56:08 +00:00 committed by GitHub
commit fd5edead7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -326,7 +326,7 @@ if __name__ == '__main__':
start_time = time.time()
# check platform
if sys.platform == 'win32':
if sys.platform != 'win32':
print('This script is currently only compatible with Windows')
EXIT_CODE = 1
sys.exit(1)