mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
21 lines
623 B
Python
21 lines
623 B
Python
#!/usr/bin/env python
|
|
# -*- coding: UTF-8 -*-
|
|
sysLibFound = False
|
|
try:
|
|
import sys
|
|
except ImportError:
|
|
print ("[Error] sys python library is required to be installed!")
|
|
else:
|
|
sysLibFound = True
|
|
|
|
if (not sysLibFound):
|
|
sys.stdout.write("[Error] Errors were found when trying to import required python libraries\n")
|
|
sys.exit(1)
|
|
|
|
if not (sys.version_info[0] == 2 and sys.version_info[1] == 7):
|
|
sys.stdout.write("[Error] Blade Runner MIX Resource Creator script requires Python 2.7\n")
|
|
sys.exit(1)
|
|
|
|
import packBladeRunnerMIXFromPCTLKXLS04
|
|
if __name__ == "__main__":
|
|
packBladeRunnerMIXFromPCTLKXLS04.main(sys.argv[0:]) |